ZindustryInfo.java
1.01 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.lhcredit.project.business.zindustryInfo.domain;
import com.lhcredit.framework.web.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.List;
/**
* 招投标-行业相关表 zindustry_info
*
* @author lhcredit
* @date 2025-05-15
*/
@Data
@ApiModel(value = "招投标-行业相关")
public class ZindustryInfo extends BaseEntity{
private static final long serialVersionUID=1L;
/** 主键 */
@ApiModelProperty(value = "主键")
private Integer id;
/** 行业名称 */
@ApiModelProperty(value = "行业名称")
private String name;
/** 父级ID */
@ApiModelProperty(value = "父级ID")
private Integer parentId;
/** */
@ApiModelProperty(value = "")
private Integer garade;
/** 状态 0启用1 禁用 */
@ApiModelProperty(value = "状态 0启用1 禁用")
private String status;
@ApiModelProperty(value = "子集")
private List<ZindustryInfo> children;
}