DatUserLog.java 3.03 KB
package cn.csbr.springboot.dao.model;

import cn.hutool.core.date.DateTime;

import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;

@Table(name = "dat_user_log")
public class DatUserLog {
    public Date getLogintime() {
        return logintime;
    }

    public void setLogintime(Date logintime) {
        this.logintime = logintime;
    }

    public String getStoreguid() {
        return storeguid;
    }

    public void setStoreguid(String storeguid) {
        this.storeguid = storeguid;
    }

    public String getStorename() {
        return storename;
    }

    public void setStorename(String storename) {
        this.storename = storename;
    }

    public String getDeptguid() {
        return deptguid;
    }

    public void setDeptguid(String deptguid) {
        this.deptguid = deptguid;
    }

    public String getDeptname() {
        return deptname;
    }

    public void setDeptname(String deptname) {
        this.deptname = deptname;
    }

    public String getUsercode() {
        return usercode;
    }

    public void setUsercode(String usercode) {
        this.usercode = usercode;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getLogintype() {
        return logintype;
    }

    public void setLogintype(String logintype) {
        this.logintype = logintype;
    }
    public String getCloseusercode() {
        return closeusercode;
    }

    public String getCloseusername() {
        return closeusername;
    }

    public void setCloseusername(String closeusername) {
        this.closeusername = closeusername;
    }

    public void setCloseusercode(String closeusercode) {
        this.closeusercode = closeusercode;
    }

    public String getGuid() {
        return guid;
    }

    public void setGuid(String guid) {
        this.guid = guid;
    }
    public String getCabinet() {
        return cabinet;
    }

    public void setCabinet(String cabinet) {
        this.cabinet = cabinet;
    }

    public Date getClosetime() {
        return closetime;
    }

    public void setClosetime(Date closetime) {
        this.closetime = closetime;
    }

    @Column(name = "logintime")
    private Date logintime;
    @Column(name = "storeguid")
    private  String storeguid ;
    @Column(name = "storename")
    private  String storename ;
    @Column(name = "deptguid")
    private  String deptguid ;
    @Column(name = "deptname")
    private  String deptname ;
    @Column(name = "usercode")
    private  String usercode ;
    @Column(name = "username")
    private  String username ;
    @Column(name = "logintype")
    private  String logintype ;
    @Column(name = "closeusercode")
    private  String closeusercode ;
    @Column(name = "closeusername")
    private  String closeusername ;
    @Column(name = "cabinet")
    private String cabinet;
    @Column(name = "closetime")
    private Date closetime;



    @Id
    private String guid;
}