|
@@ -0,0 +1,37 @@
|
|
|
+package com.rtrh.projects.modules.projects.vo;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class SubFixListVo {
|
|
|
+
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ private String subName;
|
|
|
+
|
|
|
+ private String subjectId;
|
|
|
+
|
|
|
+ private String content;
|
|
|
+
|
|
|
+ private BigDecimal amtTotal;
|
|
|
+
|
|
|
+ private String progress;
|
|
|
+
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ private Date beginDate;
|
|
|
+
|
|
|
+ private String qqsxblqk;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ private Date endDate;
|
|
|
+
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ private Date rtDate;
|
|
|
+
|
|
|
+}
|