whyczh
2021-04-06 a5cea92f5149bb0dca740042a4ee1a971d599fab
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("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;
    }
}