|
@@ -18,6 +18,7 @@ import org.apache.ibatis.annotations.Mapper;
|
|
public interface IotFailureReportMapper extends BaseMapperX<IotFailureReportDO> {
|
|
public interface IotFailureReportMapper extends BaseMapperX<IotFailureReportDO> {
|
|
|
|
|
|
default PageResult<IotFailureReportDO> selectPage(IotFailureReportPageReqVO reqVO) {
|
|
default PageResult<IotFailureReportDO> selectPage(IotFailureReportPageReqVO reqVO) {
|
|
|
|
+
|
|
return selectPage(reqVO, new LambdaQueryWrapperX<IotFailureReportDO>()
|
|
return selectPage(reqVO, new LambdaQueryWrapperX<IotFailureReportDO>()
|
|
.eqIfPresent(IotFailureReportDO::getFailureCode, reqVO.getFailureCode())
|
|
.eqIfPresent(IotFailureReportDO::getFailureCode, reqVO.getFailureCode())
|
|
.likeIfPresent(IotFailureReportDO::getFailureName, reqVO.getFailureName())
|
|
.likeIfPresent(IotFailureReportDO::getFailureName, reqVO.getFailureName())
|