package com.doumee.dao.business.vo; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; @Data public class HiddenDangerCompanyVO { @ApiModelProperty(value = "业务主键",hidden = true) private Integer id; @ApiModelProperty(value = "分类") private String categoryName; public HiddenDangerCompanyVO(String categoryName, int id) { this.categoryName = categoryName; this.id = id; } }