|
@@ -232,6 +232,40 @@ public class PartSettingDO implements Serializable {
|
|
|
private Integer communicationModeMobile;
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 分机自定义呼叫角色按钮1
|
|
|
+ */
|
|
|
+ @Column(name = "customize_role_call_first")
|
|
|
+ @ApiModelProperty(value = "分机自定义呼叫角色按钮1要呼叫的角色ID", required = true)
|
|
|
+ private Integer customizeRoleCallFirst;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分机自定义呼叫角色按钮2
|
|
|
+ */
|
|
|
+ @Column(name = "customize_role_call_second")
|
|
|
+ @ApiModelProperty(value = "分机自定义呼叫角色按钮2要呼叫的角色ID", required = true)
|
|
|
+ private Integer customizeRoleCallSecond;
|
|
|
+
|
|
|
+ @Column(name = "doctor_title")
|
|
|
+ @ApiModelProperty(value = "模拟分机医生标题", required = true)
|
|
|
+ private String doctorTitle;
|
|
|
+
|
|
|
+ @Column(name = "doctor_valid")
|
|
|
+ @ApiModelProperty(value = "是否显示模拟分机医生标题", required = true)
|
|
|
+ private Integer doctorValid;
|
|
|
+
|
|
|
+ @Column(name = "nurse_title")
|
|
|
+ @ApiModelProperty(value = "模拟分机护士标题", required = true)
|
|
|
+ private String nurseTitle;
|
|
|
+
|
|
|
+ @Column(name = "nurse_valid")
|
|
|
+ @ApiModelProperty(value = "是否显示模拟分机护士标题", required = true)
|
|
|
+ private Integer nurseValid;
|
|
|
+
|
|
|
+ @Column(name = "up_seconds")
|
|
|
+ @ApiModelProperty(value = "腕表上传定位时间间隔", required = true)
|
|
|
+ private Integer upSeconds;
|
|
|
+
|
|
|
@PrimaryKeyField
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
@@ -510,4 +544,60 @@ public class PartSettingDO implements Serializable {
|
|
|
public void setCommunicationModeMobile(Integer communicationModeMobile) {
|
|
|
this.communicationModeMobile = communicationModeMobile;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getCustomizeRoleCallFirst() {
|
|
|
+ return customizeRoleCallFirst;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomizeRoleCallFirst(Integer customizeRoleCallFirst) {
|
|
|
+ this.customizeRoleCallFirst = customizeRoleCallFirst;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCustomizeRoleCallSecond() {
|
|
|
+ return customizeRoleCallSecond;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomizeRoleCallSecond(Integer customizeRoleCallSecond) {
|
|
|
+ this.customizeRoleCallSecond = customizeRoleCallSecond;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDoctorTitle() {
|
|
|
+ return doctorTitle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDoctorTitle(String doctorTitle) {
|
|
|
+ this.doctorTitle = doctorTitle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getDoctorValid() {
|
|
|
+ return doctorValid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDoctorValid(Integer doctorValid) {
|
|
|
+ this.doctorValid = doctorValid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNurseTitle() {
|
|
|
+ return nurseTitle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNurseTitle(String nurseTitle) {
|
|
|
+ this.nurseTitle = nurseTitle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getNurseValid() {
|
|
|
+ return nurseValid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNurseValid(Integer nurseValid) {
|
|
|
+ this.nurseValid = nurseValid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getUpSeconds() {
|
|
|
+ return upSeconds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpSeconds(Integer upSeconds) {
|
|
|
+ this.upSeconds = upSeconds;
|
|
|
+ }
|
|
|
}
|