1、企业基本信息新增审批状态查询功能

This commit is contained in:
Wayne 2024-05-08 17:18:00 +08:00
parent c3ece5270f
commit c457623992
2 changed files with 4 additions and 0 deletions

View File

@ -34,6 +34,9 @@ public class EnterpriseInformationPageReqVO extends PageParam {
@Schema(description = "经营状态") @Schema(description = "经营状态")
private Integer operateState; private Integer operateState;
@Schema(description = "审批状态")
private Integer status;
@Schema(description = "是否涉及危化证") @Schema(description = "是否涉及危化证")
private Integer isSecure; private Integer isSecure;

View File

@ -25,6 +25,7 @@ public interface EnterpriseInformationMapper extends BaseMapperX<EnterpriseInfor
.likeIfPresent(EnterpriseInformationDO::getUnifiedCreditCode, reqVO.getUnifiedCreditCode()) .likeIfPresent(EnterpriseInformationDO::getUnifiedCreditCode, reqVO.getUnifiedCreditCode())
.eqIfPresent(EnterpriseInformationDO::getOperateState, reqVO.getOperateState()) .eqIfPresent(EnterpriseInformationDO::getOperateState, reqVO.getOperateState())
.eqIfPresent(EnterpriseInformationDO::getIsSecure, reqVO.getIsSecure()) .eqIfPresent(EnterpriseInformationDO::getIsSecure, reqVO.getIsSecure())
.eqIfPresent(EnterpriseInformationDO::getStatus, reqVO.getStatus())
.betweenIfPresent(EnterpriseInformationDO::getEstablishDate, reqVO.getEstablishDate()) .betweenIfPresent(EnterpriseInformationDO::getEstablishDate, reqVO.getEstablishDate())
.eqIfPresent(EnterpriseInformationDO::getEnterpriseType, reqVO.getEnterpriseType()) .eqIfPresent(EnterpriseInformationDO::getEnterpriseType, reqVO.getEnterpriseType())
.likeIfPresent(EnterpriseInformationDO::getEnterpriseBelongingToIndustry, reqVO.getEnterpriseBelongingToIndustry()) .likeIfPresent(EnterpriseInformationDO::getEnterpriseBelongingToIndustry, reqVO.getEnterpriseBelongingToIndustry())