| package com.doumee.dao.business.vo; | 
|   | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import com.doumee.service.business.third.model.LoginUserModel; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| @Data | 
| public class GeneralDataVO{ | 
|   | 
|     @ApiModelProperty(value = "业务主键",hidden = true) | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "分类") | 
|     private String categoryName; | 
|   | 
|     @ApiModelProperty(value = "数量") | 
|     private Integer total ; | 
|   | 
|     @ApiModelProperty(value = "占比") | 
|     private BigDecimal rata ; | 
|   | 
| } |