AutoDispatchUserVo.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.repair.model.vo;
  2. import com.fasterxml.jackson.annotation.JsonIgnore;
  3. import lombok.Data;
  4. import java.time.LocalDate;
  5. /**
  6. * @Author: binguo
  7. * @Date: 2023/8/8 星期二 8:28
  8. * @Description: com.repair.model.vo
  9. * @Version: 1.0
  10. */
  11. @Data
  12. public class AutoDispatchUserVo {
  13. /**
  14. * 数据ID
  15. */
  16. private int id;
  17. /**
  18. * 接单状态
  19. */
  20. private String state;
  21. /**
  22. * 工种类型
  23. */
  24. private String workType;
  25. /**
  26. * 接单数 用来平均分单用的
  27. */
  28. private int rdrCount;
  29. /**
  30. <<<<<<< HEAD
  31. =======
  32. * 校区ID
  33. */
  34. private int schoolId;
  35. /**
  36. >>>>>>> ad80b4e35f8af32a80da24920b5f5775bb80cda3
  37. * 用户名称
  38. */
  39. private String userName;
  40. /**
  41. * 用户手机号
  42. */
  43. private String userPhone;
  44. /**
  45. * 用户身份ID
  46. */
  47. private int userZzid;
  48. /**
  49. * 接单考核时间
  50. */
  51. private int acceptanceTime;
  52. /**
  53. * 维修考核时间
  54. */
  55. @JsonIgnore
  56. private int maintenanceTime;
  57. /**
  58. * 生效日期
  59. */
  60. @JsonIgnore
  61. private LocalDate startDate;
  62. /**
  63. * 当天的班次ID
  64. * 可能会有多个
  65. */
  66. private String shiftId;
  67. }