|
@@ -1,8 +1,11 @@
|
|
|
package com.onemap.apply.domain.tdgy.res;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* 地块详情返回的信息
|
|
|
*/
|
|
@@ -37,8 +40,21 @@ public class TdgySjRes {
|
|
|
private String pzrq;
|
|
|
@JsonProperty("行政区划")
|
|
|
private String xzqh;
|
|
|
+
|
|
|
@JsonProperty("约定开工时间")
|
|
|
- private String ydkgsj;
|
|
|
+ @JsonFormat(pattern = "yyyy/MM/dd")
|
|
|
+ private Date ydkgsj;
|
|
|
@JsonProperty("约定竣工时间")
|
|
|
- private String ydjgsj;
|
|
|
+ @JsonFormat(pattern = "yyyy/MM/dd")
|
|
|
+ private Date ydjgsj;
|
|
|
+ @JsonProperty("实际开工时间")
|
|
|
+ @JsonFormat(pattern = "yyyy/MM/dd")
|
|
|
+ private Date sjkgsj;
|
|
|
+ @JsonProperty("是否开工")
|
|
|
+ private Boolean sfkg;
|
|
|
+ @JsonProperty("实际竣工时间")
|
|
|
+ @JsonFormat(pattern = "yyyy/MM/dd")
|
|
|
+ private Date sjjgsj;
|
|
|
+ @JsonProperty("是否竣工")
|
|
|
+ private Boolean sfjg;
|
|
|
}
|