| | |
| | | package com.ycl.platform.domain.query; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import com.ycl.platform.base.AbsQuery; |
| | | import enumeration.general.FastDistributeTypeEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import jakarta.validation.constraints.Min; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | private Integer unitId; |
| | | |
| | | /** |
| | | * 故障类型 |
| | | */ |
| | | private String errorType; |
| | | private List<String> errorTypeList; |
| | | |
| | | /** |
| | | * 工单id |
| | | */ |
| | | @JsonProperty("ids") |
| | | private List<Integer> ids; |
| | | private List<String> workOrderNOList; |
| | | |
| | | /** |
| | | * 关键词 |
| | | */ |
| | | private String keyword; |
| | | |
| | | /** |
| | | * 工单状态 |
| | | */ |
| | | private String status; |
| | | |
| | | /** |
| | | * 状态不为待下发(工单列表复用) |
| | | */ |
| | | private Boolean isNotDistribute; |
| | | |
| | | /** |
| | | * 运维处理时间 |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date start; |
| | | |
| | | /** |
| | | * 运维处理时间 |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date end; |
| | | } |
| | | |