package com.gkhy.labRiskManage.api.controller.basic.dto.respDto;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* 基础实验耗材管理
|
*/
|
public class BasicExperimentTypeListRespDTO {
|
|
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;
|
}
|
}
|