package com.entity; /** * @ClassName Department * @Description TODO * @Author YHT * @Date 2021/5/30 15:58 */ public class Department { private Integer id; private String deptId; private String deptName; public Department() { } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getDeptId() { return deptId; } public void setDeptId(String deptId) { this.deptId = deptId; } public String getDeptName() { return deptName; } public void setDeptName(String deptName) { this.deptName = deptName; } @Override public String toString() { return "Department{" + "id=" + id + ", deptId='" + deptId + '\'' + ", deptName='" + deptName + '\'' + '}'; } }