package cn.stylefeng.guns.modular.bs.bomInfo.model.result;
|
|
import lombok.Data;
|
import java.util.Date;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* <p>
|
* bom信息
|
* </p>
|
*
|
* @author
|
* @since 2022-10-24
|
*/
|
@Data
|
public class BomInfoResult implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 主键id
|
*/
|
private Long id;
|
|
/**
|
* 物料编号
|
*/
|
private String materialCode;
|
|
/**
|
* 物料名称
|
*/
|
private String materialName;
|
|
private String workorderNo;
|
|
private String scanningCodeFlag;
|
|
private String state;
|
|
/**
|
* 产品编号
|
*/
|
private String productCode;
|
|
/**
|
* 产品名称
|
*/
|
private String productName;
|
|
/**
|
* 工位编号
|
*/
|
private String locationCode;
|
|
private String lineCode;
|
|
|
/**
|
* 工位名称
|
*/
|
private String locationName;
|
private String loadingCode;
|
private String loadingName;
|
/**
|
* 追溯类型
|
*/
|
private String traceabilityType;
|
|
/**
|
* 数量
|
*/
|
private Long quantity;
|
|
/**
|
* 备注
|
*/
|
private String remarks;
|
|
}
|