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: 16:09
 */
public class ExperimentHazardousWasteInsertReqBO {
    /**
     * 废弃物分类:1-有机;2-酸;3-碱性;4-固体废弃物;5-医疗废弃物;6-过期化学品;7-其他;
     */
    private Byte classify;
    /**
     * 废弃物存储方式:1-吨袋;2-吨桶;3-小桶;4-托盘;5-其他;
     */
    private Byte wasteStorage;
    /**
     * 预估处理量(计量单位:kg)
     */
    private Double handAmount;
 
    public Byte getClassify() {
        return classify;
    }
 
    public void setClassify(Byte classify) {
        this.classify = classify;
    }
 
    public Byte getWasteStorage() {
        return wasteStorage;
    }
 
    public void setWasteStorage(Byte wasteStorage) {
        this.wasteStorage = wasteStorage;
    }
 
    public Double getHandAmount() {
        return handAmount;
    }
 
    public void setHandAmount(Double handAmount) {
        this.handAmount = handAmount;
    }
}