fuliqi
2024-11-06 f0ec80a9eb4d12aca25f311fecf8f6e5edf8c577
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.ycl.platform.domain.query;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.ycl.platform.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
import java.util.List;
 
/**
 * 下发工单查询
 *
 * @author xp
 * @since 2024-03-05
 */
@Data
@Accessors(chain = true)
@ApiModel(value = "下发工单查询", description = "下发工单查询")
public class DistributeWorkOrderQuery extends AbsQuery {
 
    /**
     * 运维单位
     */
    @JsonProperty("unitId")
    private Integer unitId;
 
    /**
     * 故障类型
     */
    private List<String> errorTypeList;
 
    /**
     * 工单id
     */
    @JsonProperty("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;
}