feiyu02
2021-11-22 15925907ba4b16d6fe3a5210186e0ce3cd19efa5
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.flightfeather.uav.domain.entity;
 
import javax.persistence.*;
 
@Table(name = "device_info")
public class DeviceInfo {
    @Id
    @Column(name = "device_code")
    private String deviceCode;
 
    @Column(name = "device_type")
    private String deviceType;
 
    @Column(name = "type_name")
    private String typeName;
 
    /**
     * @return device_code
     */
    public String getDeviceCode() {
        return deviceCode;
    }
 
    /**
     * @param deviceCode
     */
    public void setDeviceCode(String deviceCode) {
        this.deviceCode = deviceCode == null ? null : deviceCode.trim();
    }
 
    /**
     * @return device_type
     */
    public String getDeviceType() {
        return deviceType;
    }
 
    /**
     * @param deviceType
     */
    public void setDeviceType(String deviceType) {
        this.deviceType = deviceType == null ? null : deviceType.trim();
    }
 
    /**
     * @return type_name
     */
    public String getTypeName() {
        return typeName;
    }
 
    /**
     * @param typeName
     */
    public void setTypeName(String typeName) {
        this.typeName = typeName == null ? null : typeName.trim();
    }
}