|
@@ -62,15 +62,15 @@ public class CwProjectRecordsDTO extends BaseDTO {
|
|
|
/**
|
|
|
* 项目计划开始时间
|
|
|
*/
|
|
|
- @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date planStartDate;
|
|
|
|
|
|
/**
|
|
|
* 项目计划结束时间
|
|
|
*/
|
|
|
- @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date planEndDate;
|
|
|
|
|
|
/**
|
|
@@ -182,4 +182,9 @@ public class CwProjectRecordsDTO extends BaseDTO {
|
|
|
* 业务类型名称
|
|
|
*/
|
|
|
private String businessTypeName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目预计时间
|
|
|
+ */
|
|
|
+ private Date[] planDate;
|
|
|
}
|