From d692b45b22f985aff4635a5bb8b8958ae9bcd6dd Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 21 十月 2022 17:50:09 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/sys/LoginEntity.java | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/lf/server/entity/sys/LoginEntity.java b/src/main/java/com/lf/server/entity/sys/LoginEntity.java index 6ebc693..25599db 100644 --- a/src/main/java/com/lf/server/entity/sys/LoginEntity.java +++ b/src/main/java/com/lf/server/entity/sys/LoginEntity.java @@ -10,10 +10,11 @@ */ public class LoginEntity implements Serializable { - private static final long serialVersionUID = 2156194736679188516L; private int id; + + private String uname; private int appid; @@ -37,6 +38,14 @@ this.id = id; } + public String getUname() { + return uname; + } + + public void setUname(String uname) { + this.uname = uname; + } + public int getAppid() { return appid; } -- Gitblit v1.9.3