From e64b967ba5eba17e3b497fa35abc1aa39e7f07aa Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期六, 02 九月 2023 08:54:22 +0800 Subject: [PATCH] 资源表添加pubid,发布表去除regid、添加layerid和serviceid --- src/main/java/com/moon/server/entity/sys/ResEntity.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/moon/server/entity/sys/ResEntity.java b/src/main/java/com/moon/server/entity/sys/ResEntity.java index f54221f..8a510bc 100644 --- a/src/main/java/com/moon/server/entity/sys/ResEntity.java +++ b/src/main/java/com/moon/server/entity/sys/ResEntity.java @@ -56,6 +56,8 @@ private String updateName; + private Integer pubid; + public ResEntity() { } @@ -242,4 +244,12 @@ public void setUpdateName(String updateName) { this.updateName = updateName; } + + public Integer getPubid() { + return pubid; + } + + public void setPubid(Integer pubid) { + this.pubid = pubid; + } } -- Gitblit v1.9.3