k94314517
2025-05-06 2c4ea94474ce8f9eb48b71fb9960a7da45320282
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
    }
 
}