heheng
2025-05-16 8485affcb0d4de05059d80cb1e844d6b18291654
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
package com.gkhy.labRiskManage.application.basic.dto.dto;
 
/**
 * 基础实验耗材管理
 */
public class BasicExperimentTypeAppListDTO {
 
    private Long id;
    /**
     * 1-化学类;2-生物类;3-辐射类;4-机电类;5-特种设备类;6-其它类
     */
    private String experimentType;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getExperimentType() {
        return experimentType;
    }
 
    public void setExperimentType(String experimentType) {
        this.experimentType = experimentType;
    }
}