| | |
| | | package com.stylefeng.guns.modular.system.transfer; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | |
| | | private Date createtime; |
| | | private Integer version; |
| | | private String avatar; |
| | | /** |
| | | * 中台员工ID |
| | | */ |
| | | @TableField("empId") |
| | | private Long empId; |
| | | /** |
| | | * 中台员工所属企业ID |
| | | */ |
| | | @TableField("enterId") |
| | | private Long enterId; |
| | | /** |
| | | * 中台员工所属企业编号 |
| | | */ |
| | | @TableField("entercode") |
| | | private String entercode; |
| | | |
| | | |
| | | public Integer getId() { |
| | |
| | | public void setAvatar(String avatar) { |
| | | this.avatar = avatar; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | } |