rk
2025-09-22 cf2391a86bdea88196d49cd33949570f74c0985d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.doumee.dao.business.vo.bs;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 *智能制造成熟度能力域分析参数
 * @author 江蹄蹄
 * @date 2023/02/15 08:55
 */
@Data
@ApiModel("企业诊断报告分布统计(市、县)返回参数")
public class BsScoreLevelNumVo {
 
    @ApiModelProperty(value = "等级编码" ,example = "1",hidden = true)
    private Integer id;
    @ApiModelProperty(value = "等级名称")
    private String name;
    @ApiModelProperty(value = "申报数",example = "1")
    private int num ;
    @ApiModelProperty(value = "累计服务费用",example = "1",hidden = true)
    private BigDecimal totalPrice ;
}