【DAOP-1.0】企业认证
【功能点】功能开发
Showing
3 changed files
with
31 additions
and
0 deletions
1 | package com.csbr.qingcloud.portal.domain.vo; | 1 | package com.csbr.qingcloud.portal.domain.vo; |
2 | 2 | ||
3 | import com.csbr.cloud.mybatis.annotations.LikeQuery; | ||
4 | import com.csbr.cloud.mybatis.enums.LikeQueryEnum; | ||
3 | import com.csbr.cloud.workflow.domain.dto.appove.FlowBizGuidQueryDTO; | 5 | import com.csbr.cloud.workflow.domain.dto.appove.FlowBizGuidQueryDTO; |
4 | import io.swagger.v3.oas.annotations.media.Schema; | 6 | import io.swagger.v3.oas.annotations.media.Schema; |
5 | import lombok.EqualsAndHashCode; | 7 | import lombok.EqualsAndHashCode; |
... | @@ -19,6 +21,20 @@ import java.util.List; | ... | @@ -19,6 +21,20 @@ import java.util.List; |
19 | @Schema(title = "数据需求查询参数") | 21 | @Schema(title = "数据需求查询参数") |
20 | public class DemandQueryVO extends FlowBizGuidQueryDTO { | 22 | public class DemandQueryVO extends FlowBizGuidQueryDTO { |
21 | 23 | ||
24 | @LikeQuery(type = LikeQueryEnum.ALL) | ||
25 | @Schema(description = "数据需求名称") | ||
26 | private String dataDemandName; | ||
27 | |||
28 | @Schema(description = "需求类型") | ||
29 | private String requirementType; | ||
30 | |||
31 | @Schema(description = "需求分类【1新增 2调整】") | ||
32 | private String demandCategory; | ||
33 | |||
34 | @LikeQuery(type = LikeQueryEnum.ALL) | ||
35 | @Schema(description = "发起人") | ||
36 | private String createUserName; | ||
37 | |||
22 | /** | 38 | /** |
23 | * 业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃】 | 39 | * 业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃】 |
24 | */ | 40 | */ | ... | ... |
1 | package com.csbr.qingcloud.portal.domain.vo; | 1 | package com.csbr.qingcloud.portal.domain.vo; |
2 | 2 | ||
3 | import com.csbr.cloud.mybatis.annotations.LikeQuery; | ||
4 | import com.csbr.cloud.mybatis.enums.LikeQueryEnum; | ||
3 | import com.csbr.cloud.workflow.domain.dto.appove.FlowBizGuidQueryDTO; | 5 | import com.csbr.cloud.workflow.domain.dto.appove.FlowBizGuidQueryDTO; |
4 | import io.swagger.v3.oas.annotations.media.Schema; | 6 | import io.swagger.v3.oas.annotations.media.Schema; |
5 | import lombok.EqualsAndHashCode; | 7 | import lombok.EqualsAndHashCode; |
... | @@ -19,6 +21,13 @@ import java.util.List; | ... | @@ -19,6 +21,13 @@ import java.util.List; |
19 | @Schema(title = "企业信息查询参数") | 21 | @Schema(title = "企业信息查询参数") |
20 | public class EnterpriseQueryVO extends FlowBizGuidQueryDTO { | 22 | public class EnterpriseQueryVO extends FlowBizGuidQueryDTO { |
21 | 23 | ||
24 | @Schema(description = "企业名称") | ||
25 | @LikeQuery(type = LikeQueryEnum.ALL) | ||
26 | private String tenantName; | ||
27 | |||
28 | @Schema(description = "企业类型【选择平台字典【公司类型】的选项】") | ||
29 | private String tenantType; | ||
30 | |||
22 | /** | 31 | /** |
23 | * 业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃】 | 32 | * 业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃】 |
24 | */ | 33 | */ | ... | ... |
... | @@ -24,6 +24,12 @@ public class ServicerMaintainQueryVO extends FlowBizGuidQueryDTO { | ... | @@ -24,6 +24,12 @@ public class ServicerMaintainQueryVO extends FlowBizGuidQueryDTO { |
24 | @LikeQuery(type = LikeQueryEnum.ALL) | 24 | @LikeQuery(type = LikeQueryEnum.ALL) |
25 | private String tenantName; | 25 | private String tenantName; |
26 | 26 | ||
27 | @Schema(description = "企业类型【选择平台字典【公司类型】的选项】") | ||
28 | private String tenantType; | ||
29 | |||
30 | @Schema(description = "能否继续合作【Y 能;N 不能;】") | ||
31 | private String canContinueCollaborate; | ||
32 | |||
27 | /** | 33 | /** |
28 | * 业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃】 | 34 | * 业务审批状态【N 草稿中,A 审批中,Y 已通过,R 驳回,C 已撤销,D 已废弃】 |
29 | */ | 35 | */ | ... | ... |
-
Please register or sign in to post a comment