|  |  |  | 
|---|
|  |  |  | package com.doumee.dao.business.model; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
|---|
|  |  |  | import com.doumee.core.model.LoginUserModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
|---|
|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @ApiModel("隐患区域配置类型信息表") | 
|---|
|  |  |  | @TableName("`hidden_danger_param`") | 
|---|
|  |  |  | public class HiddenDangerParam { | 
|---|
|  |  |  | public class HiddenDangerParam  extends LoginUserModel { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableId(type = IdType.AUTO) | 
|---|
|  |  |  | @ApiModelProperty(value = "主键", example = "1") | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "安全员编码集合,多个英文逗号隔开", example = "1") | 
|---|
|  |  |  | @ExcelColumn(name="安全员编码集合,多个英文逗号隔开") | 
|---|
|  |  |  | private Integer memberIds; | 
|---|
|  |  |  | private String memberIds; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "安全员姓名集合,多个英文逗号隔开") | 
|---|
|  |  |  | @ExcelColumn(name="安全员姓名集合,多个英文逗号隔开") | 
|---|