From 10c2e86f67ef4a992e5cdd4f8d28a5893b066e4d Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期六, 24 十二月 2022 12:38:22 +0800 Subject: [PATCH] 2022-12-24 --- src/main/java/com/lf/server/entity/show/ApplyEntity.java | 32 ++++++++++++++++++++++++++------ 1 files changed, 26 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/lf/server/entity/show/ApplyEntity.java b/src/main/java/com/lf/server/entity/show/ApplyEntity.java index 9acc04b..4d6baa2 100644 --- a/src/main/java/com/lf/server/entity/show/ApplyEntity.java +++ b/src/main/java/com/lf/server/entity/show/ApplyEntity.java @@ -8,7 +8,7 @@ * @author WWW */ public class ApplyEntity implements Serializable { - private static final long serialVersionUID = -681840196569375744L; + private static final long serialVersionUID = -849213119060365952L; private int id; @@ -16,9 +16,13 @@ private String depids; - private String tables; + private String tabs; + + private String entities; private String wkt; + + private String pwd; private int status; @@ -61,12 +65,20 @@ this.depids = depids; } - public String getTables() { - return tables; + public String getTabs() { + return tabs; } - public void setTables(String tables) { - this.tables = tables; + public void setTabs(String tabs) { + this.tabs = tabs; + } + + public String getEntities() { + return entities; + } + + public void setEntities(String entities) { + this.entities = entities; } public String getWkt() { @@ -77,6 +89,14 @@ this.wkt = wkt; } + public String getPwd() { + return pwd; + } + + public void setPwd(String pwd) { + this.pwd = pwd; + } + public int getStatus() { return status; } -- Gitblit v1.9.3