From abcbbbe1efad6f7eab14424f7bbd38fabd41ad6a Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期日, 03 九月 2023 21:00:35 +0800 Subject: [PATCH] 设置创建图层属性值 --- src/main/java/com/moon/server/entity/data/MetaEntity.java | 32 +++++++++++++++++++++----------- 1 files changed, 21 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/moon/server/entity/data/MetaEntity.java b/src/main/java/com/moon/server/entity/data/MetaEntity.java index aade87b..3e46f70 100644 --- a/src/main/java/com/moon/server/entity/data/MetaEntity.java +++ b/src/main/java/com/moon/server/entity/data/MetaEntity.java @@ -52,7 +52,7 @@ private int ismeta; - private String sensortype; + private int sensortype; private Timestamp acqTime; @@ -66,7 +66,7 @@ private String hDatum; - private String mataType; + private int mataType; private String bands; @@ -74,7 +74,9 @@ private String ct; - private String uname; + private String createName; + + private String updateName; private String depName; @@ -261,11 +263,11 @@ this.ismeta = ismeta; } - public String getSensortype() { + public int getSensortype() { return sensortype; } - public void setSensortype(String sensortype) { + public void setSensortype(int sensortype) { this.sensortype = sensortype; } @@ -317,11 +319,11 @@ this.hDatum = hDatum; } - public String getMataType() { + public int getMataType() { return mataType; } - public void setMataType(String mataType) { + public void setMataType(int mataType) { this.mataType = mataType; } @@ -349,12 +351,20 @@ this.ct = ct; } - public String getUname() { - return uname; + public String getCreateName() { + return createName; } - public void setUname(String uname) { - this.uname = uname; + public void setCreateName(String createName) { + this.createName = createName; + } + + public String getUpdateName() { + return updateName; + } + + public void setUpdateName(String updateName) { + this.updateName = updateName; } public String getDepName() { -- Gitblit v1.9.3