AutoDispatchUserVo.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. @JsonIgnore
  29. private int rdrCount;
  30. /**
  31. * 用户名称
  32. */
  33. private String userName;
  34. /**
  35. * 用户手机号
  36. */
  37. private String userPhone;
  38. /**
  39. * 用户身份ID
  40. */
  41. private int userZzid;
  42. /**
  43. * 接单考核时间
  44. */
  45. private int acceptanceTime;
  46. /**
  47. * 维修考核时间
  48. */
  49. @JsonIgnore
  50. private int maintenanceTime;
  51. /**
  52. * 生效日期
  53. */
  54. @JsonIgnore
  55. private LocalDate startDate;
  56. /**
  57. * 当天的班次ID
  58. * 可能会有多个
  59. */
  60. private String shiftId;
  61. /**
  62. * 维修班
  63. */
  64. private String teamName;
  65. /**
  66. * 用户身份
  67. */
  68. private String userZzName;
  69. }