From ed8c7a5effd0d423ce1118b680ecdca6fe732609 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 02 七月 2025 16:43:13 +0800 Subject: [PATCH] Merge branch 'master' of http://192.168.11.205:9000/r/P2022036_Service --- src/main/java/com/lf/server/entity/show/OneMapEntity.java | 279 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 279 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/show/OneMapEntity.java b/src/main/java/com/lf/server/entity/show/OneMapEntity.java index 2423b9e..7850e96 100644 --- a/src/main/java/com/lf/server/entity/show/OneMapEntity.java +++ b/src/main/java/com/lf/server/entity/show/OneMapEntity.java @@ -1,6 +1,9 @@ package com.lf.server.entity.show; +import com.fasterxml.jackson.annotation.JsonIgnore; + import java.io.Serializable; +import java.sql.Timestamp; /** * 瀹樼綉涓�寮犲浘瀹炰綋 @@ -11,5 +14,281 @@ public class OneMapEntity implements Serializable { private static final long serialVersionUID = 1L; + /** + * value + */ + @JsonIgnore + private String value; + /** + * key + */ + @JsonIgnore + private String key; + + private int id; + + private String eventid; + + private int metaid; + + private short ismeta; + + private String dircode; + + private String depcode; + + private int verid; + + private String name; + + private String type; + + private String guid; + + private String path; + + private double sizes; + + private String tab; + + private String layer; + + private int rows; + + private int createUser; + + private Timestamp createTime; + + private int updateUser; + + private Timestamp updateTime; + + private String bak; + + private String geom; + + private String uname; + + private String depName; + + private String verName; + + private String dirName; + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + + public String getKey() { + return key; + } + + public void setKey(String key) { + this.key = key; + } + + public int getId() { + return id; + } + + public void setId(int id) { + this.id = id; + } + + public String getEventid() { + return eventid; + } + + public void setEventid(String eventid) { + this.eventid = eventid; + } + + public int getMetaid() { + return metaid; + } + + public void setMetaid(int metaid) { + this.metaid = metaid; + } + + public short getIsmeta() { + return ismeta; + } + + public void setIsmeta(short ismeta) { + this.ismeta = ismeta; + } + + public String getDircode() { + return dircode; + } + + public void setDircode(String dircode) { + this.dircode = dircode; + } + + public String getDepcode() { + return depcode; + } + + public void setDepcode(String depcode) { + this.depcode = depcode; + } + + public int getVerid() { + return verid; + } + + public void setVerid(int verid) { + this.verid = verid; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getGuid() { + return guid; + } + + public void setGuid(String guid) { + this.guid = guid; + } + + public String getPath() { + return path; + } + + public void setPath(String path) { + this.path = path; + } + + public double getSizes() { + return sizes; + } + + public void setSizes(double sizes) { + this.sizes = sizes; + } + + public String getTab() { + return tab; + } + + public void setTab(String tab) { + this.tab = tab; + } + + public String getLayer() { + return layer; + } + + public void setLayer(String layer) { + this.layer = layer; + } + + public int getRows() { + return rows; + } + + public void setRows(int rows) { + this.rows = rows; + } + + public int getCreateUser() { + return createUser; + } + + public void setCreateUser(int createUser) { + this.createUser = createUser; + } + + public Timestamp getCreateTime() { + return createTime; + } + + public void setCreateTime(Timestamp createTime) { + this.createTime = createTime; + } + + public int getUpdateUser() { + return updateUser; + } + + public void setUpdateUser(int updateUser) { + this.updateUser = updateUser; + } + + public Timestamp getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Timestamp updateTime) { + this.updateTime = updateTime; + } + + public String getBak() { + return bak; + } + + public void setBak(String bak) { + this.bak = bak; + } + + public String getGeom() { + return geom; + } + + public void setGeom(String geom) { + this.geom = geom; + } + + public String getUname() { + return uname; + } + + public void setUname(String uname) { + this.uname = uname; + } + + public String getDepName() { + return depName; + } + + public void setDepName(String depName) { + this.depName = depName; + } + + public String getVerName() { + return verName; + } + + public void setVerName(String verName) { + this.verName = verName; + } + + public String getDirName() { + return dirName; + } + + public void setDirName(String dirName) { + this.dirName = dirName; + } } -- Gitblit v1.9.3