package com.gkhy.labRiskManage.domain.basic.model.dto;
|
|
import java.time.LocalDateTime;
|
|
public class DeviceTypeDTO {
|
|
|
private Long id;
|
/**
|
* 设备类型
|
*/
|
private String deviceType;
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getDeviceType() {
|
return deviceType;
|
}
|
|
public void setDeviceType(String deviceType) {
|
this.deviceType = deviceType;
|
}
|
|
}
|