|
|
@ -1,15 +1,15 @@ |
|
|
|
package com.win.module.wms.dal.mysql.accountcalendar; |
|
|
|
|
|
|
|
import java.util.*; |
|
|
|
|
|
|
|
import com.win.framework.common.pojo.PageResult; |
|
|
|
import com.win.framework.mybatis.core.query.LambdaQueryWrapperX; |
|
|
|
import com.win.framework.mybatis.core.mapper.BaseMapperX; |
|
|
|
import com.win.framework.mybatis.core.query.LambdaQueryWrapperX; |
|
|
|
import com.win.module.wms.controller.accountcalendar.vo.AccountcalendarExportReqVO; |
|
|
|
import com.win.module.wms.controller.accountcalendar.vo.AccountcalendarPageReqVO; |
|
|
|
import com.win.module.wms.dal.dataobject.accountcalendar.AccountcalendarDO; |
|
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
* 账期日历 Mapper |
|
|
|
* |
|
|
@ -31,7 +31,7 @@ public interface AccountcalendarMapper extends BaseMapperX<AccountcalendarDO> { |
|
|
|
.betweenIfPresent(AccountcalendarDO::getExpireTime, reqVO.getExpireTime()) |
|
|
|
.eqIfPresent(AccountcalendarDO::getRemark, reqVO.getRemark()) |
|
|
|
.betweenIfPresent(AccountcalendarDO::getCreateTime, reqVO.getCreateTime()) |
|
|
|
.eqIfPresent(AccountcalendarDO::getCreatorId, reqVO.getCreatorId()) |
|
|
|
.eqIfPresent(AccountcalendarDO::getCreator, reqVO.getCreator()) |
|
|
|
.orderByDesc(AccountcalendarDO::getId)); |
|
|
|
} |
|
|
|
|
|
|
@ -48,7 +48,7 @@ public interface AccountcalendarMapper extends BaseMapperX<AccountcalendarDO> { |
|
|
|
.betweenIfPresent(AccountcalendarDO::getExpireTime, reqVO.getExpireTime()) |
|
|
|
.eqIfPresent(AccountcalendarDO::getRemark, reqVO.getRemark()) |
|
|
|
.betweenIfPresent(AccountcalendarDO::getCreateTime, reqVO.getCreateTime()) |
|
|
|
.eqIfPresent(AccountcalendarDO::getCreatorId, reqVO.getCreatorId()) |
|
|
|
.eqIfPresent(AccountcalendarDO::getCreator, reqVO.getCreator()) |
|
|
|
.orderByDesc(AccountcalendarDO::getId)); |
|
|
|
} |
|
|
|
|
|
|
|