From 6ab82851e9197ebd0e0af10669900bd3c0340df7 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 10 十月 2022 15:14:52 +0800 Subject: [PATCH] 修改登录日志 --- src/main/java/com/lf/server/entity/sys/LoginEntity.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 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..158558d 100644 --- a/src/main/java/com/lf/server/entity/sys/LoginEntity.java +++ b/src/main/java/com/lf/server/entity/sys/LoginEntity.java @@ -15,6 +15,8 @@ private int id; + private String uname; + private int appid; private String ip; @@ -37,6 +39,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