| | |
| | | */ |
| | | @TableField("pushOrder") |
| | | private Integer pushOrder; |
| | | /** |
| | | * 中台员工ID |
| | | */ |
| | | @TableField("empId") |
| | | private Long empId; |
| | | /** |
| | | * 中台员工所属企业ID |
| | | */ |
| | | @TableField("enterId") |
| | | private Long enterId; |
| | | /** |
| | | * 中台员工所属企业编号 |
| | | */ |
| | | @TableField("entercode") |
| | | private String entercode; |
| | | /** |
| | | * 中台新增状态(0=否,1=是) |
| | | */ |
| | | @TableField("empnew") |
| | | private Integer empnew; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | this.pushOrder = pushOrder; |
| | | } |
| | | |
| | | public Long getEmpId() { |
| | | return empId; |
| | | } |
| | | |
| | | public void setEmpId(Long empId) { |
| | | this.empId = empId; |
| | | } |
| | | |
| | | public Long getEnterId() { |
| | | return enterId; |
| | | } |
| | | |
| | | public void setEnterId(Long enterId) { |
| | | this.enterId = enterId; |
| | | } |
| | | |
| | | public String getEntercode() { |
| | | return entercode; |
| | | } |
| | | |
| | | public void setEntercode(String entercode) { |
| | | this.entercode = entercode; |
| | | } |
| | | |
| | | public Integer getEmpnew() { |
| | | return empnew; |
| | | } |
| | | |
| | | public void setEmpnew(Integer empnew) { |
| | | this.empnew = empnew; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "Dispatch{" + |