|
|
|
@ -78,7 +78,7 @@ public class BaseDeviceTypeServiceImpl implements IBaseDeviceTypeService {
|
|
|
|
|
.eq(StringUtils.isNotBlank(bo.getDeviceTypeCode()), BaseDeviceType::getDeviceTypeCode, bo.getDeviceTypeCode())
|
|
|
|
|
.like(StringUtils.isNotBlank(bo.getDeviceTypeName()), BaseDeviceType::getDeviceTypeName, bo.getDeviceTypeName())
|
|
|
|
|
.eq(StringUtils.isNotBlank(bo.getAncestors()), BaseDeviceType::getAncestors, bo.getAncestors())
|
|
|
|
|
.eq(bo.getCategoryId() != null, BaseDeviceType::getCategoryId, bo.getCategoryId())
|
|
|
|
|
.eq(bo.getDeviceCategoryId() != null, BaseDeviceType::getDeviceCategoryId, bo.getDeviceCategoryId())
|
|
|
|
|
.eq(StringUtils.isNotBlank(bo.getActiveFlag()), BaseDeviceType::getActiveFlag, bo.getActiveFlag())
|
|
|
|
|
.orderByDesc(BaseDeviceType::getCreateTime);
|
|
|
|
|
return lqw;
|
|
|
|
|