ZindustryInfo.java 1.01 KB
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;
}