Personnel.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package cn.cslg.pas.common.model.cronModel;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import lombok.experimental.Accessors;
  7. /**
  8. * @author 沈永艺
  9. * @date 2022-8-2
  10. * @description 人员
  11. */
  12. @Data
  13. @Accessors(chain = true)
  14. public class Personnel {
  15. /**
  16. * 人员账号
  17. */
  18. private Integer id;
  19. private Integer guid;
  20. private String personnelUserName;
  21. /**
  22. * 人员密码
  23. */
  24. private String personnelPassword;
  25. /**
  26. * 人员名称
  27. */
  28. private String personnelName;
  29. /**
  30. * 人员性别(1男0女)
  31. */
  32. private Integer personnelUserSex;
  33. /**
  34. * 人员联系电话
  35. */
  36. private String personnelPhone;
  37. /**
  38. * 人员邮箱
  39. */
  40. private String personnelEmail;
  41. /**
  42. * 人员QQ号
  43. */
  44. private String personnelQQ;
  45. /**
  46. * 人员微信号
  47. */
  48. private String personnelWechat;
  49. /**
  50. * 人员钉钉号
  51. */
  52. private String personnelDing;
  53. /**
  54. * 人员描述
  55. */
  56. private String personnelDescription;
  57. /**
  58. * 人员账号状态(1启用0停用)
  59. */
  60. private Integer personnelStatus;
  61. /**
  62. * 租户ID
  63. */
  64. private Integer tenantId;
  65. }