|
@@ -1,6 +1,8 @@
|
|
|
package com.huaxu.dto;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
import com.huaxu.entity.AlarmSetting;
|
|
|
+import com.huaxu.model.ProgramItem;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
@@ -60,5 +62,23 @@ public class AlarmSettingDto extends AlarmSetting {
|
|
|
*/
|
|
|
@ApiModelProperty(value = "属性名称")
|
|
|
private String attributeName;
|
|
|
+ /**
|
|
|
+ * 属性名称
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value ="权限",hidden = true)
|
|
|
+ @JsonIgnore
|
|
|
+ private List<ProgramItem> programItems;
|
|
|
+ /**
|
|
|
+ * 属性名称
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value="用户权限类型",hidden = true)
|
|
|
+ @JsonIgnore
|
|
|
+ private Integer permissonType;
|
|
|
+ /**
|
|
|
+ * 用户类型
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "用户类型(-9999 超管 -999普通用户 2普通用户)",hidden = true)
|
|
|
+ @JsonIgnore
|
|
|
+ private String userType;
|
|
|
|
|
|
}
|