|
@ -2,6 +2,7 @@ package com.yihu.jw.entity.a1entity;
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
@ -12,75 +13,58 @@ import java.util.Date;
|
|
|
|
|
|
@Entity
|
|
|
@Table(name="t_mediicine_device")
|
|
|
public class Mediicinedevice implements Serializable {
|
|
|
public class Mediicinedevice extends UuidIdentityEntityWithOperator implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
@Id
|
|
|
/**
|
|
|
* 设备id
|
|
|
* 所属
|
|
|
*/
|
|
|
@Column(length = 50)
|
|
|
private String idDevice;
|
|
|
private String belongCommunity;
|
|
|
|
|
|
/**
|
|
|
* 设备分类
|
|
|
*/
|
|
|
@Column(length = 50)
|
|
|
private String equClass;
|
|
|
|
|
|
/**
|
|
|
* 所属
|
|
|
*/
|
|
|
@Column(length = 50)
|
|
|
private String belongCommunity;
|
|
|
|
|
|
/**
|
|
|
* 网络状态
|
|
|
*/
|
|
|
@Column(length = 10)
|
|
|
private Integer networkStatus;
|
|
|
private String networkStatus;
|
|
|
|
|
|
/**
|
|
|
* 售卖状态
|
|
|
*/
|
|
|
|
|
|
private Integer saleStatus;
|
|
|
private String saleStatus;
|
|
|
|
|
|
/**
|
|
|
* 设备名称
|
|
|
*/
|
|
|
@Column(length = 50)
|
|
|
private String equName;
|
|
|
|
|
|
/**
|
|
|
* 设备编号
|
|
|
*/
|
|
|
@Column(length = 50)
|
|
|
private Integer equNum;
|
|
|
private String equNum;
|
|
|
|
|
|
/**
|
|
|
* 机器编码
|
|
|
*/
|
|
|
@Column(length = 50)
|
|
|
private String machineCode;
|
|
|
|
|
|
/**
|
|
|
* 设备型号
|
|
|
*/
|
|
|
@Column(length = 50)
|
|
|
private String equType;
|
|
|
|
|
|
/**
|
|
|
* 上电测试
|
|
|
*/
|
|
|
@Column(length = 50)
|
|
|
private String poweronTest;
|
|
|
|
|
|
/**
|
|
|
* 设备详情
|
|
|
*/
|
|
|
@Column(length = 100)
|
|
|
private String equInfo;
|
|
|
|
|
|
/**
|
|
@ -91,7 +75,7 @@ public class Mediicinedevice implements Serializable {
|
|
|
/**
|
|
|
* 信号强度
|
|
|
*/
|
|
|
private Integer signalintensity;
|
|
|
private String signalintensity;
|
|
|
|
|
|
/**
|
|
|
* 所属
|
|
@ -101,82 +85,65 @@ public class Mediicinedevice implements Serializable {
|
|
|
/**
|
|
|
* 社区中心名称
|
|
|
*/
|
|
|
@Column(length = 100)
|
|
|
private String community;
|
|
|
|
|
|
/**
|
|
|
* 投放地址
|
|
|
*/
|
|
|
@Column(length = 200)
|
|
|
private String deliveryAddress;
|
|
|
|
|
|
/**
|
|
|
* 升级情况
|
|
|
*/
|
|
|
@Column(length = 40)
|
|
|
private String upgrAdesit;
|
|
|
|
|
|
/**
|
|
|
* 设备区域
|
|
|
*/
|
|
|
@Column(length = 40)
|
|
|
private String equArea;
|
|
|
|
|
|
/**
|
|
|
* 详细地址
|
|
|
*/
|
|
|
@Column(length = 140)
|
|
|
private String detailAddress;
|
|
|
|
|
|
/**
|
|
|
* 套餐
|
|
|
*/
|
|
|
@Column(length = 140)
|
|
|
private String packAge;
|
|
|
|
|
|
/**
|
|
|
* 流量
|
|
|
*/
|
|
|
@Column(length = 140)
|
|
|
private String flow;
|
|
|
/**
|
|
|
* 已使用流量
|
|
|
*/
|
|
|
@Column(length = 140)
|
|
|
private String UsageFlow;
|
|
|
/**
|
|
|
* 卡状态
|
|
|
*/
|
|
|
@Column(length = 140)
|
|
|
private String cardStatus;
|
|
|
/**
|
|
|
* 运营商
|
|
|
*/
|
|
|
@Column(length = 140)
|
|
|
private String operator;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 删除
|
|
|
*/
|
|
|
private Integer del;
|
|
|
private String del;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 状态
|
|
|
*/
|
|
|
private Integer status;
|
|
|
private String status;
|
|
|
|
|
|
public Mediicinedevice() {
|
|
|
}
|
|
|
|
|
|
public String getIdDevice() {
|
|
|
return idDevice;
|
|
|
}
|
|
|
|
|
|
public void setIdDevice(String idDevice) {
|
|
|
this.idDevice = idDevice;
|
|
|
}
|
|
|
|
|
|
public String getEquClass() {
|
|
|
return equClass;
|
|
@ -194,19 +161,19 @@ public class Mediicinedevice implements Serializable {
|
|
|
this.belongCommunity = belongCommunity;
|
|
|
}
|
|
|
|
|
|
public Integer getNetworkStatus() {
|
|
|
public String getNetworkStatus() {
|
|
|
return networkStatus;
|
|
|
}
|
|
|
|
|
|
public void setNetworkStatus(Integer networkStatus) {
|
|
|
public void setNetworkStatus(String networkStatus) {
|
|
|
this.networkStatus = networkStatus;
|
|
|
}
|
|
|
|
|
|
public Integer getSaleStatus() {
|
|
|
public String getSaleStatus() {
|
|
|
return saleStatus;
|
|
|
}
|
|
|
|
|
|
public void setSaleStatus(Integer saleStatus) {
|
|
|
public void setSaleStatus(String saleStatus) {
|
|
|
this.saleStatus = saleStatus;
|
|
|
}
|
|
|
|
|
@ -218,11 +185,11 @@ public class Mediicinedevice implements Serializable {
|
|
|
this.equName = equName;
|
|
|
}
|
|
|
|
|
|
public Integer getEquNum() {
|
|
|
public String getEquNum() {
|
|
|
return equNum;
|
|
|
}
|
|
|
|
|
|
public void setEquNum(Integer equNum) {
|
|
|
public void setEquNum(String equNum) {
|
|
|
this.equNum = equNum;
|
|
|
}
|
|
|
|
|
@ -267,11 +234,11 @@ public class Mediicinedevice implements Serializable {
|
|
|
this.regDate = regDate;
|
|
|
}
|
|
|
|
|
|
public Integer getSignalintensity() {
|
|
|
public String getSignalintensity() {
|
|
|
return signalintensity;
|
|
|
}
|
|
|
|
|
|
public void setSignalintensity(Integer signalintensity) {
|
|
|
public void setSignalintensity(String signalintensity) {
|
|
|
this.signalintensity = signalintensity;
|
|
|
}
|
|
|
|
|
@ -363,19 +330,19 @@ public class Mediicinedevice implements Serializable {
|
|
|
this.operator = operator;
|
|
|
}
|
|
|
|
|
|
public Integer getDel() {
|
|
|
public String getDel() {
|
|
|
return del;
|
|
|
}
|
|
|
|
|
|
public void setDel(Integer del) {
|
|
|
public void setDel(String del) {
|
|
|
this.del = del;
|
|
|
}
|
|
|
|
|
|
public Integer getStatus() {
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Integer status) {
|
|
|
public void setStatus(String status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
}
|