package com.billion.main.bs.domain;
|
|
import com.billion.common.annotation.Excel;
|
import com.billion.main.common.BaseEntity;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 基础BOM子信息对象 bs_bom_child_info
|
*
|
* @author HDY
|
* @date 2024-11-25
|
*/
|
@Data
|
public class BsBomChildInfo extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id */
|
private Long id;
|
|
/** 产品编码 */
|
@Excel(name = "产品编码")
|
private String productCode;
|
|
/** 产品名称 */
|
@Excel(name = "产品名称")
|
private String productName;
|
|
/** 工位编码 */
|
@Excel(name = "工位编码")
|
private String locationCode;
|
|
/** 工位名称 */
|
@Excel(name = "工位名称")
|
private String locationName;
|
|
/** 物料编码 */
|
@Excel(name = "物料编码")
|
private String materialCode;
|
|
/** 物料名称 */
|
@Excel(name = "物料名称")
|
private String materialName;
|
|
/** 单耗 */
|
@Excel(name = "单耗")
|
private BigDecimal costQty;
|
|
/** 单位 */
|
@Excel(name = "单位")
|
private String unit;
|
|
/** BOM编码 */
|
@Excel(name = "BOM编码")
|
private String bomCode;
|
|
/** 备注 */
|
@Excel(name = "备注")
|
private String remark;
|
|
/** 逻辑删除 */
|
private String delFlag;
|
|
|
}
|