package com.billion.main.bs.domain; import com.billion.common.annotation.Excel; import com.billion.main.common.BaseEntity; import lombok.Data; /** * 基础BOM对象 bs_bom_info * * @author HDY * @date 2024-11-25 */ @Data public class BsBomInfo extends BaseEntity { private static final long serialVersionUID = 1L; /** 主键id */ private Long id; /** BOM编码 */ @Excel(name = "BOM编码") private String bomCode; /** BOM名称 */ @Excel(name = "BOM名称") private String bomName; /** 产品编码 */ @Excel(name = "产品编码") private String productCode; /** 产品名称 */ @Excel(name = "产品名称") private String productName; /** 版本 */ @Excel(name = "版本") private String version; /** 状态(字典) */ @Excel(name = "状态(字典)") private String status; /** 数据来源 */ @Excel(name = "数据来源") private String dataSource; /** 备注 */ @Excel(name = "备注") private String remark; /** 逻辑删除 */ private String delFlag; }