heheng
2025-01-13 a27162cb82ef0cabf9b43cbfd1f3eb8c177d1e14
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
package com.gkhy.labRiskManage.api.controller.experiment.dto.req;
 
import java.time.LocalDateTime;
import java.util.List;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2022/12/20
 * @time: 15:25
 */
public class ExperimentDevelopUpdateReqBO {
    /**
     * 实验id
     */
    private Long id;
    /**
     * 是否是安全化信息系统(1是,2否)
     */
    private Byte sisStatus;
    /**
     * 安全信息化系统
     */
    private String safeInformationSystem;
 
    /**
     * 开展时间
     *
     */
    private LocalDateTime startTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Byte getSisStatus() {
        return sisStatus;
    }
 
    public void setSisStatus(Byte sisStatus) {
        this.sisStatus = sisStatus;
    }
 
    public String getSafeInformationSystem() {
        return safeInformationSystem;
    }
 
    public void setSafeInformationSystem(String safeInformationSystem) {
        this.safeInformationSystem = safeInformationSystem;
    }
 
    public LocalDateTime getStartTime() {
        return startTime;
    }
 
    public void setStartTime(LocalDateTime startTime) {
        this.startTime = startTime;
    }
 
}