From b600cee99fd210143995856e4e0db485c200a474 Mon Sep 17 00:00:00 2001 From: Surpriseplus <845948745@qq.com> Date: 星期三, 28 九月 2022 14:38:32 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/data/LoginEntity.java | 82 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 82 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/data/LoginEntity.java b/src/main/java/com/lf/server/entity/data/LoginEntity.java index 887dd7f..b2aaeaf 100644 --- a/src/main/java/com/lf/server/entity/data/LoginEntity.java +++ b/src/main/java/com/lf/server/entity/data/LoginEntity.java @@ -1,6 +1,7 @@ package com.lf.server.entity.data; import java.io.Serializable; +import java.sql.Timestamp; /** * 鐧诲綍鏃ュ織琛� @@ -9,5 +10,86 @@ */ public class LoginEntity implements Serializable { + private static final long serialVersionUID = 2156194736679188516L; + + private int id; + + private int appid; + + private String ip; + + private int type; + + private int status; + + private String browser; + + private int userid; + + private Timestamp optime; + + public int getId() { + return id; + } + + public void setId(int id) { + this.id = id; + } + + public int getAppid() { + return appid; + } + + public void setAppid(int appid) { + this.appid = appid; + } + + public String getIp() { + return ip; + } + + public void setIp(String ip) { + this.ip = ip; + } + + public int getType() { + return type; + } + + public void setType(int type) { + this.type = type; + } + + public int getStatus() { + return status; + } + + public void setStatus(int status) { + this.status = status; + } + + public String getBrowser() { + return browser; + } + + public void setBrowser(String browser) { + this.browser = browser; + } + + public int getUserid() { + return userid; + } + + public void setUserid(int userid) { + this.userid = userid; + } + + public Timestamp getOptime() { + return optime; + } + + public void setOptime(Timestamp optime) { + this.optime = optime; + } } -- Gitblit v1.9.3