|
@@ -0,0 +1,442 @@
|
|
|
+package com.wdkl.ncs.android.middleware.model.dos;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.databind.PropertyNamingStrategy;
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonNaming;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import com.wdkl.ncs.android.middleware.model.annotation.Column;
|
|
|
+import com.wdkl.ncs.android.middleware.model.annotation.Id;
|
|
|
+import com.wdkl.ncs.android.middleware.model.annotation.PrimaryKeyField;
|
|
|
+import com.wdkl.ncs.android.middleware.model.annotation.Table;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+@Table(name = "ncs_part_setting")
|
|
|
+@ApiModel
|
|
|
+@JsonNaming(value = PropertyNamingStrategy.SnakeCaseStrategy.class)
|
|
|
+public class PartSettingDO implements Serializable {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * null
|
|
|
+ */
|
|
|
+ @Column(name = "id")
|
|
|
+ @ApiModelProperty(value = "null", required = false)
|
|
|
+ @Id(name = "id")
|
|
|
+ private Integer id;
|
|
|
+ /**
|
|
|
+ * null
|
|
|
+ */
|
|
|
+ @Column(name = "union_id")
|
|
|
+ @ApiModelProperty(value = "null", required = false)
|
|
|
+ private String unionId;
|
|
|
+ /**
|
|
|
+ * null
|
|
|
+ */
|
|
|
+ @Column(name = "create_time")
|
|
|
+ @ApiModelProperty(value = "null", required = false)
|
|
|
+ private Long createTime;
|
|
|
+ /**
|
|
|
+ * null
|
|
|
+ */
|
|
|
+ @Column(name = "update_time")
|
|
|
+ @ApiModelProperty(value = "null", required = false)
|
|
|
+ private Long updateTime;
|
|
|
+ /**
|
|
|
+ * null
|
|
|
+ */
|
|
|
+ @Column(name = "part_id")
|
|
|
+ @ApiModelProperty(value = "null", required = false)
|
|
|
+ private Integer partId;
|
|
|
+ /**
|
|
|
+ * 白天开始时间
|
|
|
+ */
|
|
|
+ @Column(name = "day_start")
|
|
|
+ @ApiModelProperty(value = "白天开始时间", required = false)
|
|
|
+ private String dayStart;
|
|
|
+ /**
|
|
|
+ * 白天背光亮度
|
|
|
+ */
|
|
|
+ @Column(name = "day_light")
|
|
|
+ @ApiModelProperty(value = "白天背光亮度", required = false)
|
|
|
+ private Boolean dayLight;
|
|
|
+ /**
|
|
|
+ * 白天通话音量
|
|
|
+ */
|
|
|
+ @Column(name = "day_vol")
|
|
|
+ @ApiModelProperty(value = "白天通话音量", required = false)
|
|
|
+ private Boolean dayVol;
|
|
|
+ /**
|
|
|
+ * 白天响铃音量
|
|
|
+ */
|
|
|
+ @Column(name = "day_ring_vol")
|
|
|
+ @ApiModelProperty(value = "白天响铃音量", required = false)
|
|
|
+ private Boolean dayRingVol;
|
|
|
+ /**
|
|
|
+ * 白天响铃次数
|
|
|
+ */
|
|
|
+ @Column(name = "day_ring_times")
|
|
|
+ @ApiModelProperty(value = "白天响铃次数", required = false)
|
|
|
+ private Boolean dayRingTimes;
|
|
|
+ /**
|
|
|
+ * 白天护理灯亮度
|
|
|
+ */
|
|
|
+ @Column(name = "day_nurse_led")
|
|
|
+ @ApiModelProperty(value = "白天护理灯亮度", required = false)
|
|
|
+ private Boolean dayNurseLed;
|
|
|
+ /**
|
|
|
+ * 白天门口机通话音量
|
|
|
+ */
|
|
|
+ @Column(name = "day_door_vol")
|
|
|
+ @ApiModelProperty(value = "白天门口机通话音量", required = false)
|
|
|
+ private Boolean dayDoorVol;
|
|
|
+ /**
|
|
|
+ * 白天床头机通话音量
|
|
|
+ */
|
|
|
+ @Column(name = "day_bed_vol")
|
|
|
+ @ApiModelProperty(value = "白天床头机通话音量", required = false)
|
|
|
+ private Boolean dayBedVol;
|
|
|
+ /**
|
|
|
+ * 白天转换盒通话音量
|
|
|
+ */
|
|
|
+ @Column(name = "day_transfer_box_vol")
|
|
|
+ @ApiModelProperty(value = "白天转换盒通话音量", required = false)
|
|
|
+ private Boolean dayTransferBoxVol;
|
|
|
+ /**
|
|
|
+ * 白天转换盒系统音量
|
|
|
+ */
|
|
|
+ @Column(name = "day_transfer_box_system_vol")
|
|
|
+ @ApiModelProperty(value = "白天转换盒系统音量", required = false)
|
|
|
+ private Boolean dayTransferBoxSystemVol;
|
|
|
+ /**
|
|
|
+ * 夜晚开始时间
|
|
|
+ */
|
|
|
+ @Column(name = "night_start")
|
|
|
+ @ApiModelProperty(value = "夜晚开始时间", required = false)
|
|
|
+ private String nightStart;
|
|
|
+ /**
|
|
|
+ * 夜晚背光亮度
|
|
|
+ */
|
|
|
+ @Column(name = "night_light")
|
|
|
+ @ApiModelProperty(value = "夜晚背光亮度", required = false)
|
|
|
+ private Boolean nightLight;
|
|
|
+ /**
|
|
|
+ * 夜晚通话音量
|
|
|
+ */
|
|
|
+ @Column(name = "night_vol")
|
|
|
+ @ApiModelProperty(value = "夜晚通话音量", required = false)
|
|
|
+ private Boolean nightVol;
|
|
|
+ /**
|
|
|
+ * 夜晚响铃音量
|
|
|
+ */
|
|
|
+ @Column(name = "night_ring_vol")
|
|
|
+ @ApiModelProperty(value = "夜晚响铃音量", required = false)
|
|
|
+ private Boolean nightRingVol;
|
|
|
+ /**
|
|
|
+ * 夜晚响铃次数
|
|
|
+ */
|
|
|
+ @Column(name = "night_ring_times")
|
|
|
+ @ApiModelProperty(value = "夜晚响铃次数", required = false)
|
|
|
+ private Boolean nightRingTimes;
|
|
|
+ /**
|
|
|
+ * 夜晚护理灯亮度
|
|
|
+ */
|
|
|
+ @Column(name = "night_nurse_led")
|
|
|
+ @ApiModelProperty(value = "夜晚护理灯亮度", required = false)
|
|
|
+ private Boolean nightNurseLed;
|
|
|
+ /**
|
|
|
+ * 夜晚门口机通话音量
|
|
|
+ */
|
|
|
+ @Column(name = "night_door_vol")
|
|
|
+ @ApiModelProperty(value = "夜晚门口机通话音量", required = false)
|
|
|
+ private Boolean nightDoorVol;
|
|
|
+ /**
|
|
|
+ * 夜晚床头机通话音量
|
|
|
+ */
|
|
|
+ @Column(name = "night_bed_vol")
|
|
|
+ @ApiModelProperty(value = "夜晚床头机通话音量", required = false)
|
|
|
+ private Boolean nightBedVol;
|
|
|
+ /**
|
|
|
+ * 夜晚转换盒通话音量
|
|
|
+ */
|
|
|
+ @Column(name = "night_transfer_box_vol")
|
|
|
+ @ApiModelProperty(value = "夜晚转换盒通话音量", required = false)
|
|
|
+ private Boolean nightTransferBoxVol;
|
|
|
+ /**
|
|
|
+ * 夜晚转换盒系统音量
|
|
|
+ */
|
|
|
+ @Column(name = "night_transfer_box_system_vol")
|
|
|
+ @ApiModelProperty(value = "夜晚转换盒系统音量", required = false)
|
|
|
+ private Boolean nightTransferBoxSystemVol;
|
|
|
+ /**
|
|
|
+ * 护士机熄屏时间,单位:秒
|
|
|
+ */
|
|
|
+ @Column(name = "sleep_seconds_nurse")
|
|
|
+ @ApiModelProperty(value = "护士机熄屏时间,单位:秒", required = false)
|
|
|
+ private Boolean sleepSecondsNurse;
|
|
|
+ /**
|
|
|
+ * 门口机熄屏时间,单位:秒
|
|
|
+ */
|
|
|
+ @Column(name = "sleep_seconds_door")
|
|
|
+ @ApiModelProperty(value = "门口机熄屏时间,单位:秒", required = false)
|
|
|
+ private Boolean sleepSecondsDoor;
|
|
|
+ /**
|
|
|
+ * 病床分机熄屏时间,单位:秒
|
|
|
+ */
|
|
|
+ @Column(name = "sleep_seconds_bed")
|
|
|
+ @ApiModelProperty(value = "病床分机熄屏时间,单位:秒", required = false)
|
|
|
+ private Boolean sleepSecondsBed;
|
|
|
+
|
|
|
+
|
|
|
+ @PrimaryKeyField
|
|
|
+ public Integer getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Integer id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public String getUnionId() {
|
|
|
+ return unionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnionId(String unionId) {
|
|
|
+ this.unionId = unionId;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Long getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Long createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Long getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(Long updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getPartId() {
|
|
|
+ return partId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPartId(Integer partId) {
|
|
|
+ this.partId = partId;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public String getDayStart() {
|
|
|
+ return dayStart;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayStart(String dayStart) {
|
|
|
+ this.dayStart = dayStart;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayLight() {
|
|
|
+ return dayLight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayLight(Boolean dayLight) {
|
|
|
+ this.dayLight = dayLight;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayVol() {
|
|
|
+ return dayVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayVol(Boolean dayVol) {
|
|
|
+ this.dayVol = dayVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayRingVol() {
|
|
|
+ return dayRingVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayRingVol(Boolean dayRingVol) {
|
|
|
+ this.dayRingVol = dayRingVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayRingTimes() {
|
|
|
+ return dayRingTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayRingTimes(Boolean dayRingTimes) {
|
|
|
+ this.dayRingTimes = dayRingTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayNurseLed() {
|
|
|
+ return dayNurseLed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayNurseLed(Boolean dayNurseLed) {
|
|
|
+ this.dayNurseLed = dayNurseLed;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayDoorVol() {
|
|
|
+ return dayDoorVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayDoorVol(Boolean dayDoorVol) {
|
|
|
+ this.dayDoorVol = dayDoorVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayBedVol() {
|
|
|
+ return dayBedVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayBedVol(Boolean dayBedVol) {
|
|
|
+ this.dayBedVol = dayBedVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayTransferBoxVol() {
|
|
|
+ return dayTransferBoxVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayTransferBoxVol(Boolean dayTransferBoxVol) {
|
|
|
+ this.dayTransferBoxVol = dayTransferBoxVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getDayTransferBoxSystemVol() {
|
|
|
+ return dayTransferBoxSystemVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDayTransferBoxSystemVol(Boolean dayTransferBoxSystemVol) {
|
|
|
+ this.dayTransferBoxSystemVol = dayTransferBoxSystemVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public String getNightStart() {
|
|
|
+ return nightStart;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightStart(String nightStart) {
|
|
|
+ this.nightStart = nightStart;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightLight() {
|
|
|
+ return nightLight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightLight(Boolean nightLight) {
|
|
|
+ this.nightLight = nightLight;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightVol() {
|
|
|
+ return nightVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightVol(Boolean nightVol) {
|
|
|
+ this.nightVol = nightVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightRingVol() {
|
|
|
+ return nightRingVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightRingVol(Boolean nightRingVol) {
|
|
|
+ this.nightRingVol = nightRingVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightRingTimes() {
|
|
|
+ return nightRingTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightRingTimes(Boolean nightRingTimes) {
|
|
|
+ this.nightRingTimes = nightRingTimes;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightNurseLed() {
|
|
|
+ return nightNurseLed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightNurseLed(Boolean nightNurseLed) {
|
|
|
+ this.nightNurseLed = nightNurseLed;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightDoorVol() {
|
|
|
+ return nightDoorVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightDoorVol(Boolean nightDoorVol) {
|
|
|
+ this.nightDoorVol = nightDoorVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightBedVol() {
|
|
|
+ return nightBedVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightBedVol(Boolean nightBedVol) {
|
|
|
+ this.nightBedVol = nightBedVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightTransferBoxVol() {
|
|
|
+ return nightTransferBoxVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightTransferBoxVol(Boolean nightTransferBoxVol) {
|
|
|
+ this.nightTransferBoxVol = nightTransferBoxVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getNightTransferBoxSystemVol() {
|
|
|
+ return nightTransferBoxSystemVol;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNightTransferBoxSystemVol(Boolean nightTransferBoxSystemVol) {
|
|
|
+ this.nightTransferBoxSystemVol = nightTransferBoxSystemVol;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getSleepSecondsNurse() {
|
|
|
+ return sleepSecondsNurse;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSleepSecondsNurse(Boolean sleepSecondsNurse) {
|
|
|
+ this.sleepSecondsNurse = sleepSecondsNurse;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getSleepSecondsDoor() {
|
|
|
+ return sleepSecondsDoor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSleepSecondsDoor(Boolean sleepSecondsDoor) {
|
|
|
+ this.sleepSecondsDoor = sleepSecondsDoor;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Boolean getSleepSecondsBed() {
|
|
|
+ return sleepSecondsBed;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSleepSecondsBed(Boolean sleepSecondsBed) {
|
|
|
+ this.sleepSecondsBed = sleepSecondsBed;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|