| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- 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;
- /**
- * 当天接单数
- */
- @JsonIgnore
- private int rdrCount;
- /**
- * 用户名称
- */
- 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;
- /**
- * 维修班
- */
- private String teamName;
- /**
- * 用户身份
- */
- private String userZzName;
- }
|