package doumeemes.dao.ext.vo; 
 | 
  
 | 
import doumeemes.core.annotation.excel.ExcelColumn; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.io.Serializable; 
 | 
  
 | 
/** 
 | 
 * @author 江蹄蹄 
 | 
 * @date 2022/04/20 11:01 
 | 
 */ 
 | 
@Data 
 | 
@ApiModel("待办列表数量统计对象") 
 | 
public class NoticeExtListCountVO implements Serializable{ 
 | 
  
 | 
    @ApiModelProperty(value = "全部数量", example = "1") 
 | 
    @ExcelColumn(name="全部数量") 
 | 
    private Integer allNum; 
 | 
    @ApiModelProperty(value = "待办数量", example = "1") 
 | 
    private Integer startNum; 
 | 
    @ApiModelProperty(value = "已处理数量", example = "1") 
 | 
    private Integer endNum; 
 | 
  
 | 
  
 | 
} 
 |