MrShi
2 天以前 39fc2d6754953e41a7334a2166347baacfcfb40a
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;
    }
 
}