|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
|---|
|  |  |  | import com.doumee.dao.web.dto.DCANoProblemDTO; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "事件说明", example = "1") | 
|---|
|  |  |  | private String eventInfo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "邮件通知人员编码集合") | 
|---|
|  |  |  | @ApiModelProperty(value = "邮件通知人员编码集合 memberId") | 
|---|
|  |  |  | private String emialMemberIds; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "企业微信通知人员编码集合") | 
|---|
|  |  |  | @ApiModelProperty(value = "企业微信通知人员编码集合 qwId") | 
|---|
|  |  |  | private String qwnoticeMemberIds; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "发生时间") | 
|---|
|  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String qwId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "解决情况(查询使用):0=否;1=是;",hidden = true) | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private Integer dealStatus; | 
|---|
|  |  |  | @ApiModelProperty(value = "统计数;",hidden = true) | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private Long num; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty("文件路径前缀") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String path; | 
|---|
|  |  |  | @ApiModelProperty("时间选项 0本周 1本月 2本季度 3本年") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private Integer timeType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "不符合问题列表") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private List<Workorder> dcaChildList; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "查询开始时间") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private Date queryStartTime; | 
|---|
|  |  |  | @ApiModelProperty(value = "查询结束时间") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private Date queryEndTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|