8b6cbd3b by xiaojie

【数据资产】

1、数据需求-修改上架状态
1 parent 8272fe03
package com.csbr.qingcloud.portal.domain.vo;
import com.csbr.cloud.workflow.domain.vo.appove.BizApproveVO;
import com.fasterxml.jackson.annotation.JsonFormat;
import csbr.cloud.entity.domain.base.vo.BaseVO;
import io.swagger.v3.oas.annotations.media.Schema;
......@@ -18,48 +17,32 @@ import java.util.Date;
@Data
@Schema(title = "数据需求门户返回参数")
public class DemandPortalRSVO extends BaseVO {
/**
* 系统唯一标识
*/
@Schema(description = "系统唯一标识")
private String guid;
/**
* 数据需求名称
*/
@Schema(description = "数据需求名称")
private String dataDemandName;
/**
* 需求类型
*/
@Schema(description = "需求类型")
private String requirementType;
/**
* 需求开始时间
*/
@Schema(description = "需求开始时间")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date requirementTermSdate;
/**
* 需求结束时间
*/
@Schema(description = "需求结束时间")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date requirementTermEdate;
/**
* 需求内容
*/
@Schema(description = "最低预算")
private BigDecimal minBudget;
@Schema(description = "最高预算")
private BigDecimal maxBudget;
@Schema(description = "需求内容")
private String requirementContent;
/**
* 交付标的
*/
@Schema(description = "交付标的")
private String updateCycle;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!