| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package cn.com.lzt.car.schedule.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("t_s_receiver")
- public class TSReceiver implements Serializable {
- private static final long serialVersionUID = -76410081690859978L;
- private Integer id;
- /**
- * 工号
- */
- private String num;
- /**
- * 姓名
- */
- private String name;
- /**
- * 手机号
- */
- private String phone;
- /**
- * 部门
- */
- private String departName;
- /**
- * 职务
- */
- private String dutiesName;
- /**
- * 岗位
- */
- private String postName;
- /**
- * 业务类型
- */
- private String businessType;
- /**
- * 作业类型
- */
- private String jobType;
- /**
- * 区域
- */
- private String region;
- /**
- * 消息类型
- */
- private String newsType;
- }
|