package com.doumee.dao.business.vo.bs; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** *智能制造成熟度能力域分析参数 * @author 江蹄蹄 * @date 2023/02/15 08:55 */ @Data @ApiModel("诊断类型分布统计市、县)返回参数") public class BsIndustryTimesVo { @ApiModelProperty(value = "行业名称") private String name; @ApiModelProperty(value = "总企业数") private int num; }