mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-01 02:38:43 +08:00 
			
		
		
		
	feat: 合同[审批状态]条件筛选
This commit is contained in:
		| @@ -30,4 +30,7 @@ public class CrmContractPageReqVO extends PageParam { | ||||
|     @InEnum(CrmSceneTypeEnum.class) | ||||
|     private Integer sceneType; // 场景类型,为 null 时则表示全部 | ||||
|  | ||||
|     @Schema(description = "审批状态", example = "20") | ||||
|     private Integer auditStatus; | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -49,6 +49,7 @@ public interface CrmContractMapper extends BaseMapperX<CrmContractDO> { | ||||
|                 .likeIfPresent(CrmContractDO::getName, pageReqVO.getName()) | ||||
|                 .eqIfPresent(CrmContractDO::getCustomerId, pageReqVO.getCustomerId()) | ||||
|                 .eqIfPresent(CrmContractDO::getBusinessId, pageReqVO.getBusinessId()) | ||||
|                 .eqIfPresent(CrmContractDO::getAuditStatus, pageReqVO.getAuditStatus()) | ||||
|                 .orderByDesc(CrmContractDO::getId); | ||||
|         return selectJoinPage(pageReqVO, CrmContractDO.class, mpjLambdaWrapperX); | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 dhb52
					dhb52