xuxiuxi
2017-04-11 257bc68fa55f55951c1cf8b7de4045039d27d64e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
package cn.com.basic.face.discern.entity;
 
import java.io.Serializable;
 
import cn.com.basic.face.discern.common.BaseEntity;
 
/**
 * Department
 */
public class Department extends BaseEntity implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    public static final String MODEL_NAME = "Department";
 
    public static final class FieldNames {
        /**
         * 部门主键
         */
        public static final String deptId = "deptId";
        /**
         * 部门名称
         */
        public static final String deptName = "deptName";
        /**
         * 部门首字母
         */
        public static final String deptNameEn = "deptNameEn";
    }
 
    // 部门主键
    private String deptId;
    // 部门名称
    private String deptName;
    // 部门首字母
    private String deptNameEn;
 
    /**
     * Get 部门主键
     */
    public String getDeptId() {
        return deptId;
    }
 
    /**
     * Set 部门主键
     */
    public void setDeptId(String deptId) {
        this.deptId = deptId;
    }
 
    /**
     * Get 部门名称
     */
    public String getDeptName() {
        return deptName;
    }
 
    /**
     * Set 部门名称
     */
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
 
    /**
     * Get 部门首字母
     */
    public String getDeptNameEn() {
        return deptNameEn;
    }
 
    /**
     * Set 部门首字母
     */
    public void setDeptNameEn(String deptNameEn) {
        this.deptNameEn = deptNameEn;
    }
 
    public String toString() {
        return 
             ",部门主键 =" + deptId     +  ",部门名称 =" + deptName   +  ",部门首字母 ="+ deptNameEn
            ;
    }
}