1、企业基本信息新增审批状态查询功能
This commit is contained in:
parent
c3ece5270f
commit
c457623992
|
@ -34,6 +34,9 @@ public class EnterpriseInformationPageReqVO extends PageParam {
|
|||
@Schema(description = "经营状态")
|
||||
private Integer operateState;
|
||||
|
||||
@Schema(description = "审批状态")
|
||||
private Integer status;
|
||||
|
||||
@Schema(description = "是否涉及危化证")
|
||||
private Integer isSecure;
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ public interface EnterpriseInformationMapper extends BaseMapperX<EnterpriseInfor
|
|||
.likeIfPresent(EnterpriseInformationDO::getUnifiedCreditCode, reqVO.getUnifiedCreditCode())
|
||||
.eqIfPresent(EnterpriseInformationDO::getOperateState, reqVO.getOperateState())
|
||||
.eqIfPresent(EnterpriseInformationDO::getIsSecure, reqVO.getIsSecure())
|
||||
.eqIfPresent(EnterpriseInformationDO::getStatus, reqVO.getStatus())
|
||||
.betweenIfPresent(EnterpriseInformationDO::getEstablishDate, reqVO.getEstablishDate())
|
||||
.eqIfPresent(EnterpriseInformationDO::getEnterpriseType, reqVO.getEnterpriseType())
|
||||
.likeIfPresent(EnterpriseInformationDO::getEnterpriseBelongingToIndustry, reqVO.getEnterpriseBelongingToIndustry())
|
||||
|
|
Loading…
Reference in New Issue