package com.gkhy.labRiskManage.api.controller.experiment.dto.resp;
|
|
/**
|
* 实验危废物
|
*/
|
public class ExperimentHazardousWasteRespDTO {
|
|
private Long id;
|
|
/**
|
* 废弃物分类:1-有机;2-酸;3-碱性;4-固体废弃物;5-医疗废弃物;6-过期化学品;7-其他;
|
*/
|
private Byte classify;
|
/**
|
* 废弃物存储方式:1-吨袋;2-吨桶;3-小桶;4-托盘;5-其他;
|
*/
|
private Byte wasteStorage;
|
/**
|
* 预估处理量(计量单位:kg)
|
*/
|
private Double handAmount;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
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;
|
}
|
|
}
|