package com.whyc.dto;
|
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.List;
|
@Alias("SystemInfDTO")
|
public class SystemInfDTO {
|
|
private Integer systemId;
|
private String systemName;
|
private List<DeviceInfDTO> devices;
|
|
public Integer getSystemId() {
|
return systemId;
|
}
|
|
public void setSystemId(Integer systemId) {
|
this.systemId = systemId;
|
}
|
|
public String getSystemName() {
|
return systemName;
|
}
|
|
public void setSystemName(String systemName) {
|
this.systemName = systemName;
|
}
|
|
public List<DeviceInfDTO> getDevices() {
|
return devices;
|
}
|
|
public void setDevices(List<DeviceInfDTO> devices) {
|
this.devices = devices;
|
}
|
}
|