|
@@ -64,6 +64,7 @@ public class InterlockBaseController extends JeecgController<InterlockBase, IInt
|
|
|
public List<InterlockBase> list(){
|
|
|
LambdaQueryWrapper<InterlockBase> wrapper = new LambdaQueryWrapper<>();
|
|
|
wrapper.eq(InterlockBase::getInterlockType,"0").or().eq(InterlockBase::getInterlockType,"1");
|
|
|
+ wrapper.orderByDesc(InterlockBase::getCreateTime);
|
|
|
return interlockBaseService.list(wrapper);
|
|
|
}
|
|
|
|