TSReceiver.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package cn.com.lzt.car.schedule.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. import lombok.experimental.Accessors;
  6. import java.io.Serializable;
  7. @Data
  8. @EqualsAndHashCode(callSuper = false)
  9. @Accessors(chain = true)
  10. @TableName("t_s_receiver")
  11. public class TSReceiver implements Serializable {
  12. private static final long serialVersionUID = -76410081690859978L;
  13. private Integer id;
  14. /**
  15. * 工号
  16. */
  17. private String num;
  18. /**
  19. * 姓名
  20. */
  21. private String name;
  22. /**
  23. * 手机号
  24. */
  25. private String phone;
  26. /**
  27. * 部门
  28. */
  29. private String departName;
  30. /**
  31. * 职务
  32. */
  33. private String dutiesName;
  34. /**
  35. * 岗位
  36. */
  37. private String postName;
  38. /**
  39. * 业务类型
  40. */
  41. private String businessType;
  42. /**
  43. * 作业类型
  44. */
  45. private String jobType;
  46. /**
  47. * 区域
  48. */
  49. private String region;
  50. /**
  51. * 消息类型
  52. */
  53. private String newsType;
  54. }