package cn.stylefeng.guns.modular.bs.bomInfo.model.params;
|
|
import lombok.Data;
|
import cn.stylefeng.roses.kernel.model.validator.BaseValidatingParam;
|
import java.util.Date;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* <p>
|
* bom信息
|
* </p>
|
*
|
* @author
|
* @since 2022-10-24
|
*/
|
@Data
|
public class BomInfoParam implements Serializable, BaseValidatingParam {
|
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 主键id
|
*/
|
private Long id;
|
|
/**
|
* 物料编号
|
*/
|
private String materialCode;
|
|
/**
|
* 物料名称
|
*/
|
private String materialName;
|
|
/**
|
* 产品编号
|
*/
|
private String productCode;
|
|
/**
|
* 产品名称
|
*/
|
private String productName;
|
|
/**
|
* 工位编号
|
*/
|
private String locationCode;
|
|
/**
|
* 工位名称
|
*/
|
private String locationName;
|
|
private String loadingCode;
|
private String loadingName;
|
private String workorderNo;
|
private String scanningCodeFlag;
|
|
|
/**
|
* 追溯类型
|
*/
|
private String traceabilityType;
|
|
/**
|
* 数量
|
*/
|
private Long quantity;
|
|
/**
|
* 备注
|
*/
|
private String remarks;
|
|
@Override
|
public String checkParam() {
|
return null;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
public String getLoadingCode() {
|
return loadingCode;
|
}
|
|
public void setLoadingCode(String loadingCode) {
|
this.loadingCode = loadingCode;
|
}
|
|
public String getLoadingName() {
|
return loadingName;
|
}
|
|
public void setLoadingName(String loadingName) {
|
this.loadingName = loadingName;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getMaterialCode() {
|
return materialCode;
|
}
|
|
public void setMaterialCode(String materialCode) {
|
this.materialCode = materialCode;
|
}
|
|
public String getMaterialName() {
|
return materialName;
|
}
|
|
public void setMaterialName(String materialName) {
|
this.materialName = materialName;
|
}
|
|
public String getProductCode() {
|
return productCode;
|
}
|
|
public void setProductCode(String productCode) {
|
this.productCode = productCode;
|
}
|
|
public String getProductName() {
|
return productName;
|
}
|
|
public void setProductName(String productName) {
|
this.productName = productName;
|
}
|
|
public String getLocationCode() {
|
return locationCode;
|
}
|
|
public void setLocationCode(String locationCode) {
|
this.locationCode = locationCode;
|
}
|
|
public String getLocationName() {
|
return locationName;
|
}
|
|
public void setLocationName(String locationName) {
|
this.locationName = locationName;
|
}
|
|
public String getTraceabilityType() {
|
return traceabilityType;
|
}
|
|
public void setTraceabilityType(String traceabilityType) {
|
this.traceabilityType = traceabilityType;
|
}
|
|
public Long getQuantity() {
|
return quantity;
|
}
|
|
public void setQuantity(Long quantity) {
|
this.quantity = quantity;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
}
|