|
@@ -1,6 +1,7 @@
|
|
package com.sooka.sponest.dataexchange.sendChange.domian;
|
|
package com.sooka.sponest.dataexchange.sendChange.domian;
|
|
|
|
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
@@ -30,15 +31,19 @@ public class CenterdataTKeyProjects {
|
|
private String secretary;
|
|
private String secretary;
|
|
private String parkLatitude;
|
|
private String parkLatitude;
|
|
private String secretaryPhone;
|
|
private String secretaryPhone;
|
|
- private String startTime;
|
|
|
|
- private String endTime;
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM",timezone = "GMT+8")
|
|
|
|
+ private Date startTime;
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM",timezone = "GMT+8")
|
|
|
|
+ private Date endTime;
|
|
private String continuationProjectInvest;
|
|
private String continuationProjectInvest;
|
|
- private String continuationProjectStartTime;
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM",timezone = "GMT+8")
|
|
|
|
+ private Date continuationProjectStartTime;
|
|
private String joinStatisticalBank;
|
|
private String joinStatisticalBank;
|
|
private String joinStatistical;
|
|
private String joinStatistical;
|
|
private String joinStatisticalInvest;
|
|
private String joinStatisticalInvest;
|
|
private String thisYearCumulativeInvestment;
|
|
private String thisYearCumulativeInvestment;
|
|
- private String realityCompletedTime;
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM",timezone = "GMT+8")
|
|
|
|
+ private Date realityCompletedTime;
|
|
private String springStartProject;
|
|
private String springStartProject;
|
|
private String projectId;
|
|
private String projectId;
|
|
|
|
|