Blame view

src/main/java/com/xkl/domain/XklAdminEntity.java 1.78 KB
zhaoyue authored
1 2 3 4 5 6 7 8 9 10 11 12
package com.xkl.domain;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

/**
 * 用户数据的domain类
 */
@Entity
@Table(name = "xkl_admin")
zhaoyue authored
13
public class XklAdminEntity {
zhaoyue authored
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
    //用户id
    @Id
    @Column(name = "id")
    private long id;

    //账号
    @Column(name = "account")
    private String account;

    //密码
    @Column(name = "pwd")
    private String pwd;

    //账号类型
    @Column(name = "type")
    private int type;


    //公司id
    @Column(name = "coid")
    private int coid;
zhaoyue authored
36 37 38 39
    //salt
    @Column(name = "salt")
    private String salt;
zhaoyue authored
40 41 42 43 44
    //备注
    @Column(name = "note")
    private String note;

zhaoyue authored
45
    //状态
zhaoyue authored
46 47
    @Column(name = "status")
    private int status;
zhaoyue authored
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88

    public long getId() {
        return id;
    }

    public void setId(long id) {
        this.id = id;
    }

    public String getAccount() {
        return account;
    }

    public void setAccount(String account) {
        this.account = account;
    }

    public String getPwd() {
        return pwd;
    }

    public void setPwd(String pwd) {
        this.pwd = pwd;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }

    public int getCoid() {
        return coid;
    }

    public void setCoid(int coid) {
        this.coid = coid;
    }
zhaoyue authored
89 90 91 92 93 94 95 96
    public String getSalt() {
        return salt;
    }

    public void setSalt(String salt) {
        this.salt = salt;
    }
zhaoyue authored
97 98 99 100 101 102 103 104 105 106
    public String getNote() {
        return note;
    }

    public void setNote(String note) {
        this.note = note;
    }

    public int getStatus() {
        return status;
zhaoyue authored
107 108
    }
zhaoyue authored
109 110
    public void setStatus(int status) {
        this.status = status;
zhaoyue authored
111 112
    }
}