|
@@ -1,9 +1,11 @@
|
|
|
package com.onemap.apply.domain.yzt;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import com.sun.org.apache.xpath.internal.operations.Bool;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
//资源目录树状结构实体类
|
|
@@ -33,6 +35,10 @@ public class ZymlTreeDataDTO {
|
|
|
private String minimumlevel;
|
|
|
private String sharestate;
|
|
|
private String year;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date createTime;
|
|
|
+ private String createBy;
|
|
|
+ private String dataexplain;
|
|
|
private List<ZymlTreeDataDTO> children = new ArrayList<>();
|
|
|
|
|
|
public String getLegend() {
|
|
@@ -236,4 +242,28 @@ public class ZymlTreeDataDTO {
|
|
|
public void setYear(String year) {
|
|
|
this.year = year;
|
|
|
}
|
|
|
+
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateBy() {
|
|
|
+ return createBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateBy(String createBy) {
|
|
|
+ this.createBy = createBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDataexplain() {
|
|
|
+ return dataexplain;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDataexplain(String dataexplain) {
|
|
|
+ this.dataexplain = dataexplain;
|
|
|
+ }
|
|
|
}
|