TaskDTO.java 1.95 KB
package vion.dto;

import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Getter;
import lombok.Setter;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.multipart.MultipartFile;

import java.util.Date;

@Getter
@Setter
public class TaskDTO extends BaseDTO {
    private Long id;
    /** 门店id */
    private Long storeId;
    /** 报修日期 */
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date repairTime;
    /** 故障类型 */
    private Integer faultType;
    /** 故障说明 */
    private String faultDescription;
    /** 报修人 */
    private String repairPeople;
    /** 报修人联系方式 */
    private String repairPhone;
    /** 状态:0待确认1进行中2已完成3挂起 */
    private Integer status;
    /** 解决日期 */
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date solveDate;
    /** 故障原因 */
    private String faultReason;
    /** 解决措施:0产品BUG、1使用问题、2需求问题 */
    private Integer solveType;
    /** 解决故障描述 */
    private String solveDescription;
    /** 创建者 */
    private Long createUser;
    /** 当前处理人 */
    private Long activeUser;
    /** 截止日期 */
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date expDate;

    /** 备注 */
    private String remark;
    /** 集团id */
    private Long accountId;
    private String uuid;
    /** 预工单id */
    private Long taskTempId;
    private MultipartFile[] files;

    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startdate;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date enddate;
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date curDate;
    /** 工时 */
    private Double manHour;
}