fuliqi
2024-09-29 c4df5d2cfaa12a1c8a72ef25934fdc31d5be65a1
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
package com.ycl.platform.domain.query;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.platform.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.time.LocalDateTime;
import java.util.Date;
 
/**
 * 运维单位查询
 *
 * @author xp
 * @since 2024-03-04
 */
@Data
@Accessors(chain = true)
@ApiModel(value = "YwUnit查询", description = "运维单位查询")
public class YwUnitQuery extends AbsQuery {
 
    /**
     * 单位编码
     */
    private String unitCode;
 
    /**
     * 单位名称
     */
    private String unitName;
 
    /**
     * 开始时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date start;
 
    /**
     * 结束时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date end;
 
}