| | |
| | | /**
|
| | | * 部门主键
|
| | | */
|
| | | public static final String id = "id";
|
| | | public static final String deptId = "deptId";
|
| | | /**
|
| | | * 部门名称
|
| | | */
|
| | | public static final String label = "label";
|
| | | public static final String deptName = "deptName";
|
| | | /**
|
| | | * 部门首字母
|
| | | */
|
| | | public static final String labelSpell = "labelSpell";
|
| | | public static final String deptNameEn = "deptNameEn";
|
| | | }
|
| | |
|
| | | // 部门主键
|
| | | private String id;
|
| | | private String deptId;
|
| | | // 部门名称
|
| | | private String label;
|
| | | private String deptName;
|
| | | // 部门首字母
|
| | | private String labelSpell;
|
| | | private String deptNameEn;
|
| | |
|
| | | /**
|
| | | * Get 部门主键
|
| | | */
|
| | | public String getId() {
|
| | | return id;
|
| | | public String getDeptId() {
|
| | | return deptId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 部门主键
|
| | | */
|
| | | public void setId(String id) {
|
| | | this.id = id;
|
| | | public void setDeptId(String deptId) {
|
| | | this.deptId = deptId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 部门名称
|
| | | */
|
| | | public String getLabel() {
|
| | | return label;
|
| | | public String getDeptName() {
|
| | | return deptName;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 部门名称
|
| | | */
|
| | | public void setLabel(String label) {
|
| | | this.label = label;
|
| | | public void setDeptName(String deptName) {
|
| | | this.deptName = deptName;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 部门首字母
|
| | | */
|
| | | public String getLabelSpell() {
|
| | | return labelSpell;
|
| | | public String getDeptNameEn() {
|
| | | return deptNameEn;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 部门首字母
|
| | | */
|
| | | public void setLabelSpell(String labelSpell) {
|
| | | this.labelSpell = labelSpell;
|
| | | public void setDeptNameEn(String deptNameEn) {
|
| | | this.deptNameEn = deptNameEn;
|
| | | }
|
| | |
|
| | | public String toString() {
|
| | | return
|
| | | ",部门主键 =" + id + ",部门名称 =" + label + ",部门首字母 ="+ labelSpell
|
| | | ",部门主键 =" + deptId + ",部门名称 =" + deptName + ",部门首字母 ="+ deptNameEn
|
| | | ;
|
| | | }
|
| | | }
|