whycrzg
2021-03-31 e949c039209af21f652dc9c66b48d3c3558fc5c6
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 com.whyc.pojo.MotorState;
import org.apache.ibatis.type.Alias;
 
import java.util.List;
@Alias("TestDataDTO")
public class TestDataDTO {
    private String deviceId;
    private String deviceName;
    private List<MotorState> data;
 
    public String getDeviceId() {
        return deviceId;
    }
 
    public void setDeviceId(String deviceId) {
        this.deviceId = deviceId;
    }
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public List<MotorState> getData() {
        return data;
    }
 
    public void setData(List<MotorState> data) {
        this.data = data;
    }
}