|
@ -0,0 +1,168 @@
|
|
|
package com.yihu.jw.entity.iot.equipment;
|
|
|
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
@Entity
|
|
|
@Table(name = "iot_equipment_detail")
|
|
|
public class IotEquipmentDetailDO extends UuidIdentityEntityWithOperator {
|
|
|
/*
|
|
|
*设备名称
|
|
|
*/
|
|
|
private String deviceName;
|
|
|
/*
|
|
|
*设备型号
|
|
|
*/
|
|
|
private String deviceModel;
|
|
|
/*
|
|
|
*设备编码
|
|
|
*/
|
|
|
private String deviceCode;
|
|
|
/*
|
|
|
*品牌
|
|
|
*/
|
|
|
private String manufacturerCode;
|
|
|
/*
|
|
|
*厂商名称
|
|
|
*/
|
|
|
private String manufacturer;
|
|
|
/*
|
|
|
*厂商地址
|
|
|
*/
|
|
|
private String address;
|
|
|
/*
|
|
|
*代表人
|
|
|
*/
|
|
|
private String representative;
|
|
|
/*
|
|
|
*申请人
|
|
|
*/
|
|
|
private String applicantName;
|
|
|
|
|
|
/*
|
|
|
*申请人电话
|
|
|
*/
|
|
|
private String applicantTel;
|
|
|
/*
|
|
|
*'所属居委会编码
|
|
|
*/
|
|
|
private String neighborhoodCommitteeCode;
|
|
|
/*
|
|
|
*所属居委会名称
|
|
|
*/
|
|
|
private String neighborhoodCommitteeName;
|
|
|
/*
|
|
|
*地址
|
|
|
*/
|
|
|
private String localAdd;
|
|
|
/*
|
|
|
*所属区域
|
|
|
*/
|
|
|
private String belongAre;
|
|
|
|
|
|
public String getDeviceName() {
|
|
|
return deviceName;
|
|
|
}
|
|
|
|
|
|
public void setDeviceName(String deviceName) {
|
|
|
this.deviceName = deviceName;
|
|
|
}
|
|
|
|
|
|
public String getDeviceModel() {
|
|
|
return deviceModel;
|
|
|
}
|
|
|
|
|
|
public void setDeviceModel(String deviceModel) {
|
|
|
this.deviceModel = deviceModel;
|
|
|
}
|
|
|
|
|
|
public String getDeviceCode() {
|
|
|
return deviceCode;
|
|
|
}
|
|
|
|
|
|
public void setDeviceCode(String deviceCode) {
|
|
|
this.deviceCode = deviceCode;
|
|
|
}
|
|
|
|
|
|
public String getManufacturerCode() {
|
|
|
return manufacturerCode;
|
|
|
}
|
|
|
|
|
|
public void setManufacturerCode(String manufacturerCode) {
|
|
|
this.manufacturerCode = manufacturerCode;
|
|
|
}
|
|
|
|
|
|
public String getManufacturer() {
|
|
|
return manufacturer;
|
|
|
}
|
|
|
|
|
|
public void setManufacturer(String manufacturer) {
|
|
|
this.manufacturer = manufacturer;
|
|
|
}
|
|
|
|
|
|
public String getAddress() {
|
|
|
return address;
|
|
|
}
|
|
|
|
|
|
public void setAddress(String address) {
|
|
|
this.address = address;
|
|
|
}
|
|
|
|
|
|
public String getRepresentative() {
|
|
|
return representative;
|
|
|
}
|
|
|
|
|
|
public void setRepresentative(String representative) {
|
|
|
this.representative = representative;
|
|
|
}
|
|
|
|
|
|
public String getApplicantName() {
|
|
|
return applicantName;
|
|
|
}
|
|
|
|
|
|
public void setApplicantName(String applicantName) {
|
|
|
this.applicantName = applicantName;
|
|
|
}
|
|
|
|
|
|
public String getApplicantTel() {
|
|
|
return applicantTel;
|
|
|
}
|
|
|
|
|
|
public void setApplicantTel(String applicantTel) {
|
|
|
this.applicantTel = applicantTel;
|
|
|
}
|
|
|
|
|
|
public String getNeighborhoodCommitteeCode() {
|
|
|
return neighborhoodCommitteeCode;
|
|
|
}
|
|
|
|
|
|
public void setNeighborhoodCommitteeCode(String neighborhoodCommitteeCode) {
|
|
|
this.neighborhoodCommitteeCode = neighborhoodCommitteeCode;
|
|
|
}
|
|
|
|
|
|
public String getNeighborhoodCommitteeName() {
|
|
|
return neighborhoodCommitteeName;
|
|
|
}
|
|
|
|
|
|
public void setNeighborhoodCommitteeName(String neighborhoodCommitteeName) {
|
|
|
this.neighborhoodCommitteeName = neighborhoodCommitteeName;
|
|
|
}
|
|
|
|
|
|
public String getLocalAdd() {
|
|
|
return localAdd;
|
|
|
}
|
|
|
|
|
|
public void setLocalAdd(String localAdd) {
|
|
|
this.localAdd = localAdd;
|
|
|
}
|
|
|
|
|
|
public String getBelongAre() {
|
|
|
return belongAre;
|
|
|
}
|
|
|
|
|
|
public void setBelongAre(String belongAre) {
|
|
|
this.belongAre = belongAre;
|
|
|
}
|
|
|
}
|