From 024e90554d19c2342f27a26f91bbea378f84da82 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 13 十一月 2024 17:25:18 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/entity/sys/ResEntity.java | 25 +++++++++++++++++++++---- 1 files changed, 21 insertions(+), 4 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 7cf7edd..4aba16e 100644 --- a/src/main/java/com/moon/server/entity/sys/ResEntity.java +++ b/src/main/java/com/moon/server/entity/sys/ResEntity.java @@ -3,10 +3,7 @@ import java.io.Serializable; import java.sql.Timestamp; -/** - * 璧勬簮 - * @author WWW - */ +@SuppressWarnings("ALL") public class ResEntity implements Serializable { private static final long serialVersionUID = -286579305905187168L; @@ -19,6 +16,8 @@ private int status; private int type; + + private int data; private int category; @@ -53,6 +52,8 @@ private String createName; private String updateName; + + private Integer pubid; public ResEntity() { } @@ -95,6 +96,14 @@ public void setType(int type) { this.type = type; + } + + public int getData() { + return data; + } + + public void setData(int data) { + this.data = data; } public int getCategory() { @@ -232,4 +241,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