XiaoRuby
2023-08-22 f77a2eba10ce3f430d31a34790a8a1184c8069e6
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
package com.yuanchu.limslaboratory.pojo.Dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Author 张宾
 * @Date 2023/8/21
 */
@Data
@ApiModel(value="查询合格率对象", description="")
public class SelectQualificationRateDto implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
 
    /**
     * 开始时间
     */
    @ApiModelProperty(value = "开始时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date beginDate;
 
    /**
     * 结束时间
     */
    @ApiModelProperty(value = "结束时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date endDate;
 
    /***
     * 类型
     */
    @ApiModelProperty(value = "检验类型")
    private Integer type;
 
    /**
     * 供应商
     */
    @ApiModelProperty(value = "供应商")
    private String supplier;
 
 
}