| package com.doumee.dao.web.response; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| public class InternalHomeVO { | 
|   | 
|     @ApiModelProperty(value = "主页图片") | 
|     private String homeImg; | 
|   | 
|     @ApiModelProperty(value = "待处理任务数量") | 
|     private Integer taskNum; | 
|   | 
|   | 
|     @ApiModelProperty(value = "待处理待办数量") | 
|     private Long noticeWaitNum; | 
|   | 
|     @ApiModelProperty(value = "已处理待办数量") | 
|     private Long noticeDealNum; | 
|   | 
|     @ApiModelProperty(value = "我发起的待办数量") | 
|     private Integer noticeCreateNum; | 
|   | 
|     @ApiModelProperty(value = "抄送的待办数量") | 
|     private Long noticeCopyNum; | 
| } |