| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- package com.repair.model.vo;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import lombok.Data;
- import java.time.LocalDate;
- /**
- * @Author: binguo
- * @Date: 2023/8/8 星期二 8:28
- * @Description: com.repair.model.vo
- * @Version: 1.0
- */
- @Data
- public class AutoDispatchUserVo {
- /**
- * 数据ID
- */
- private int id;
- /**
- * 接单状态
- */
- private String state;
- /**
- * 工种类型
- */
- private String workType;
- /**
- * 接单数 用来平均分单用的
- */
- private int rdrCount;
- /**
- <<<<<<< HEAD
- =======
- * 校区ID
- */
- private int schoolId;
- /**
- >>>>>>> ad80b4e35f8af32a80da24920b5f5775bb80cda3
- * 用户名称
- */
- private String userName;
- /**
- * 用户手机号
- */
- private String userPhone;
- /**
- * 用户身份ID
- */
- private int userZzid;
- /**
- * 接单考核时间
- */
- private int acceptanceTime;
- /**
- * 维修考核时间
- */
- @JsonIgnore
- private int maintenanceTime;
- /**
- * 生效日期
- */
- @JsonIgnore
- private LocalDate startDate;
- /**
- * 当天的班次ID
- * 可能会有多个
- */
- private String shiftId;
- }
|