管道基础大数据平台系统开发-【后端】-Server
13693261870
2025-07-02 ed8c7a5effd0d423ce1118b680ecdca6fe732609
src/main/java/com/lf/server/entity/sys/TokenEntity.java
@@ -13,6 +13,8 @@
    private int id;
    private String uname;
    private String token;
    private int duration;
@@ -31,12 +33,26 @@
    private Timestamp updateTime;
    private String createName;
    private String updateName;
    private int autoLogOut;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getUname() {
        return uname;
    }
    public void setUname(String uname) {
        this.uname = uname;
    }
    public String getToken() {
@@ -110,4 +126,28 @@
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
    public String getCreateName() {
        return createName;
    }
    public void setCreateName(String createName) {
        this.createName = createName;
    }
    public String getUpdateName() {
        return updateName;
    }
    public void setUpdateName(String updateName) {
        this.updateName = updateName;
    }
    public int getAutoLogOut() {
        return autoLogOut;
    }
    public void setAutoLogOut(int autoLogOut) {
        this.autoLogOut = autoLogOut;
    }
}