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
package com.gkhy.labRiskManage.api.controller.experiment.dto.req;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2022/12/20
 * @time: 15:25
 */
public class ExperimentApplyUpdateReqBO {
    /**
     * 实验id
     */
    private Long id;
    /**
     * 是否是安全化信息系统(1是,2否)
     */
    private Byte sisStatus;
    /**
     * 安全信息化系统
     */
    private String safeInformationSystem;
 
    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;
    }
}