| | |
| | | package com.ycl.platform.domain.query; |
| | | |
| | | import com.alibaba.excel.annotation.format.DateTimeFormat; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.platform.base.AbsQuery; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | import org.springframework.lang.NonNull; |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import enumeration.general.WorkOrderStatusEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 工单查询 |
| | |
| | | /** |
| | | * 工单号 |
| | | */ |
| | | private String workOrderNo; |
| | | private String keyword; |
| | | |
| | | /** |
| | | * 运维处理时间 |
| | | */ |
| | | private LocalDateTime start; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date start; |
| | | |
| | | /** |
| | | * 运维处理时间 |
| | | */ |
| | | private LocalDateTime end; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date end; |
| | | |
| | | /** |
| | | * 故障类型 |
| | | */ |
| | | private String errorType; |
| | | private List<String> errorTypeList; |
| | | /** |
| | | * 故障类型 |
| | | */ |
| | | private String errorTypeLabel; |
| | | /** |
| | | * 状态 |
| | | */ |
| | | private String status; |
| | | |
| | | /** |
| | | * 单位id |
| | | */ |
| | | private Integer unitId; |
| | | |
| | | |
| | | private String dept; |
| | | } |
| | | |