feiyu02
2021-11-11 2a5571f1b498eea1f4030d1f0faa42899e174aed
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 = "el_company_device")
public class CompanyDevice {
    @Id
    @Column(name = "CD_Id")
    private Integer cdId;
 
    @Column(name = "CD_Company_Id")
    private String cdCompanyId;
 
    @Column(name = "CD_Device_Code")
    private String cdDeviceCode;
 
    /**
     * @return CD_Id
     */
    public Integer getCdId() {
        return cdId;
    }
 
    /**
     * @param cdId
     */
    public void setCdId(Integer cdId) {
        this.cdId = cdId;
    }
 
    /**
     * @return CD_Company_Id
     */
    public String getCdCompanyId() {
        return cdCompanyId;
    }
 
    /**
     * @param cdCompanyId
     */
    public void setCdCompanyId(String cdCompanyId) {
        this.cdCompanyId = cdCompanyId == null ? null : cdCompanyId.trim();
    }
 
    /**
     * @return CD_Device_Code
     */
    public String getCdDeviceCode() {
        return cdDeviceCode;
    }
 
    /**
     * @param cdDeviceCode
     */
    public void setCdDeviceCode(String cdDeviceCode) {
        this.cdDeviceCode = cdDeviceCode == null ? null : cdDeviceCode.trim();
    }
}