package com.whyc.dto;
|
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.List;
|
@Alias("DeviceTypeDTO")
|
public class DeviceTypeDTO {
|
|
private Integer deviceTypeId;
|
private String deviceTypeName;
|
private List<DeviceInfDTO> devices;
|
|
public Integer getDeviceTypeId() {
|
return deviceTypeId;
|
}
|
|
public void setDeviceTypeId(Integer deviceTypeId) {
|
this.deviceTypeId = deviceTypeId;
|
}
|
|
public String getDeviceTypeName() {
|
return deviceTypeName;
|
}
|
|
public void setDeviceTypeName(String deviceTypeName) {
|
this.deviceTypeName = deviceTypeName;
|
}
|
|
public List<DeviceInfDTO> getDevices() {
|
return devices;
|
}
|
|
public void setDevices(List<DeviceInfDTO> devices) {
|
this.devices = devices;
|
}
|
}
|