8b6cbd3b by xiaojie

【数据资产】

1、数据需求-修改上架状态
1 parent 8272fe03
1 package com.csbr.qingcloud.portal.domain.vo; 1 package com.csbr.qingcloud.portal.domain.vo;
2 2
3 import com.csbr.cloud.workflow.domain.vo.appove.BizApproveVO;
4 import com.fasterxml.jackson.annotation.JsonFormat; 3 import com.fasterxml.jackson.annotation.JsonFormat;
5 import csbr.cloud.entity.domain.base.vo.BaseVO; 4 import csbr.cloud.entity.domain.base.vo.BaseVO;
6 import io.swagger.v3.oas.annotations.media.Schema; 5 import io.swagger.v3.oas.annotations.media.Schema;
...@@ -18,48 +17,32 @@ import java.util.Date; ...@@ -18,48 +17,32 @@ import java.util.Date;
18 @Data 17 @Data
19 @Schema(title = "数据需求门户返回参数") 18 @Schema(title = "数据需求门户返回参数")
20 public class DemandPortalRSVO extends BaseVO { 19 public class DemandPortalRSVO extends BaseVO {
21
22 /**
23 * 系统唯一标识
24 */
25 @Schema(description = "系统唯一标识") 20 @Schema(description = "系统唯一标识")
26 private String guid; 21 private String guid;
27 22
28 /**
29 * 数据需求名称
30 */
31 @Schema(description = "数据需求名称") 23 @Schema(description = "数据需求名称")
32 private String dataDemandName; 24 private String dataDemandName;
33 25
34 /**
35 * 需求类型
36 */
37 @Schema(description = "需求类型") 26 @Schema(description = "需求类型")
38 private String requirementType; 27 private String requirementType;
39 28
40 /**
41 * 需求开始时间
42 */
43 @Schema(description = "需求开始时间") 29 @Schema(description = "需求开始时间")
44 @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") 30 @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
45 private Date requirementTermSdate; 31 private Date requirementTermSdate;
46 32
47 /**
48 * 需求结束时间
49 */
50 @Schema(description = "需求结束时间") 33 @Schema(description = "需求结束时间")
51 @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") 34 @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
52 private Date requirementTermEdate; 35 private Date requirementTermEdate;
53 36
54 /** 37 @Schema(description = "最低预算")
55 * 需求内容 38 private BigDecimal minBudget;
56 */ 39
40 @Schema(description = "最高预算")
41 private BigDecimal maxBudget;
42
57 @Schema(description = "需求内容") 43 @Schema(description = "需求内容")
58 private String requirementContent; 44 private String requirementContent;
59 45
60 /**
61 * 交付标的
62 */
63 @Schema(description = "交付标的") 46 @Schema(description = "交付标的")
64 private String updateCycle; 47 private String updateCycle;
65 48
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!