|
@ -27,6 +27,8 @@ public class DeviceDetail extends IdEntity {
|
|
|
private String serverIp;//服务IP地址
|
|
|
private String manufacturerCode;//厂商代码threeNod:三诺 urion:优瑞恩 bioland:爱奥乐 comvee:康为
|
|
|
private String address;//厂家地址
|
|
|
private String dept;//投放科室编码
|
|
|
private String deptName;//投放科室名称
|
|
|
private String representative;//法人代表
|
|
|
private String applicantName;//申请注册人(发放人/医生)
|
|
|
private String applicantIdentity;//申请人(发放人/医生)身份证号
|
|
@ -427,4 +429,22 @@ public class DeviceDetail extends IdEntity {
|
|
|
public void setQrcode(String qrcode) {
|
|
|
this.qrcode = qrcode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "dept")
|
|
|
public String getDept() {
|
|
|
return dept;
|
|
|
}
|
|
|
|
|
|
public void setDept(String dept) {
|
|
|
this.dept = dept;
|
|
|
}
|
|
|
|
|
|
@Column(name = "dept_name")
|
|
|
public String getDeptName() {
|
|
|
return deptName;
|
|
|
}
|
|
|
|
|
|
public void setDeptName(String deptName) {
|
|
|
this.deptName = deptName;
|
|
|
}
|
|
|
}
|