package com.gkhy.labRiskManage.application.experiment.dto.bo; /** * @email 1603559716@qq.com * @author: zf * @date: 2022/12/20 * @time: 16:09 */ public class ExperimentHazardousWasteAppInsertBO { /** * 废弃物分类:1-有机;2-酸;3-碱性;4-固体废弃物;5-医疗废弃物;6-过期化学品;7-其他; */ private Byte classify; /** * 废弃物存储方式:1-吨袋;2-吨桶;3-小桶;4-托盘;5-其他; */ private Byte wasteStorage; /** * 预估处理量(计量单位:kg) */ private Double handAmount; private Long experimentId; 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; } public Long getExperimentId() { return experimentId; } public void setExperimentId(Long experimentId) { this.experimentId = experimentId; } }