whyczh
2021-03-25 da9bb5ab7c3efac4e0cb65fe6aebe7b5cc4cfbf4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
    }
}