liukangdong
2025-03-06 3d3620b81b9c2ae8e8f41ef542f0e5fa8ae43c00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 = "名称")
    private String name;
 
    @ApiModelProperty(value = "数量")
    private Integer total ;
 
    @ApiModelProperty(value = "占比")
    private BigDecimal rata ;
 
}