whycxzp
2021-05-24 87eb2d4405ccec9a277d9e779bd5f1be74a5039f
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
package com.whyc.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
import java.util.Date;
 
@ApiModel
public class ExperimentConditionDTO implements Serializable {
 
    @ApiModelProperty("试验类型")
    private String type;
    @ApiModelProperty("开始时间-最早时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date startTime1;
    @ApiModelProperty("开始时间-最晚时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date startTime2;
    @ApiModelProperty("状态:-1-取消,0-未开始,1-进行中,2-完成")
    private Integer status;
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Date getStartTime1() {
        return startTime1;
    }
 
    public void setStartTime1(Date startTime1) {
        this.startTime1 = startTime1;
    }
 
    public Date getStartTime2() {
        return startTime2;
    }
 
    public void setStartTime2(Date startTime2) {
        this.startTime2 = startTime2;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
}