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();
|
}
|
}
|