/**
|
* @Title: SchWorkorderIO.java
|
* @Description:
|
* @author baoshiwei
|
* @date 2019年5月15日
|
* @version 1.0
|
*/
|
package com.shlanbao.tzsc.base.mapping;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
|
|
/**
|
* @Title: SchWorkorderIO
|
* @Description: 工单出入库记录实体
|
* @author baoshiwei
|
* @date 2019年5月15日
|
*/
|
public class SchWorkorderIO implements Serializable{
|
|
private String id; // 主键id
|
private String workorderNumber; // 工单号
|
private String matCode; // 生产牌号
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private Date operationTime; // 作完成时间
|
private String inOutType; // 出库类型
|
private String operator; // 操作人
|
private String materialCode; // 物料号
|
private String batchCode; // 批次号
|
private Double quantity; // 数量
|
private String uom; // 单位
|
private String replaceMaterial; // 替代料描述
|
private Double minorQuantity; // 辅计量数量
|
private String minorUom; // 辅单位
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private Date consumeTime; // 物料出库时间
|
private String remark; // 备注
|
private String attr1; // 备用字段1
|
private String attr2; // 备用字段2
|
/**
|
* @return the id
|
*/
|
public String getId() {
|
return id;
|
}
|
/**
|
* @param id the id to set
|
*/
|
public void setId(String id) {
|
this.id = id;
|
}
|
/**
|
* @return the workorderNumber
|
*/
|
public String getWorkorderNumber() {
|
return workorderNumber;
|
}
|
/**
|
* @param workorderNumber the workorderNumber to set
|
*/
|
public void setWorkorderNumber(String workorderNumber) {
|
this.workorderNumber = workorderNumber;
|
}
|
/**
|
* @return the matCode
|
*/
|
public String getMatCode() {
|
return matCode;
|
}
|
/**
|
* @param matCode the matCode to set
|
*/
|
public void setMatCode(String matCode) {
|
this.matCode = matCode;
|
}
|
/**
|
* @return the operationTime
|
*/
|
public Date getOperationTime() {
|
return operationTime;
|
}
|
/**
|
* @param operationTime the operationTime to set
|
*/
|
public void setOperationTime(Date operationTime) {
|
this.operationTime = operationTime;
|
}
|
/**
|
* @return the inOutType
|
*/
|
public String getInOutType() {
|
return inOutType;
|
}
|
/**
|
* @param inOutType the inOutType to set
|
*/
|
public void setInOutType(String inOutType) {
|
this.inOutType = inOutType;
|
}
|
/**
|
* @return the operator
|
*/
|
public String getOperator() {
|
return operator;
|
}
|
/**
|
* @param operator the operator to set
|
*/
|
public void setOperator(String operator) {
|
this.operator = operator;
|
}
|
/**
|
* @return the materialCode
|
*/
|
public String getMaterialCode() {
|
return materialCode;
|
}
|
/**
|
* @param materialCode the materialCode to set
|
*/
|
public void setMaterialCode(String materialCode) {
|
this.materialCode = materialCode;
|
}
|
/**
|
* @return the batchCode
|
*/
|
public String getBatchCode() {
|
return batchCode;
|
}
|
/**
|
* @param batchCode the batchCode to set
|
*/
|
public void setBatchCode(String batchCode) {
|
this.batchCode = batchCode;
|
}
|
|
/**
|
* @return the uom
|
*/
|
public String getUom() {
|
return uom;
|
}
|
/**
|
* @param uom the uom to set
|
*/
|
public void setUom(String uom) {
|
this.uom = uom;
|
}
|
/**
|
* @return the replaceMaterial
|
*/
|
public String getReplaceMaterial() {
|
return replaceMaterial;
|
}
|
/**
|
* @param replaceMaterial the replaceMaterial to set
|
*/
|
public void setReplaceMaterial(String replaceMaterial) {
|
this.replaceMaterial = replaceMaterial;
|
}
|
|
public Double getQuantity() {
|
return quantity;
|
}
|
|
public void setQuantity(Double quantity) {
|
this.quantity = quantity;
|
}
|
|
public Double getMinorQuantity() {
|
return minorQuantity;
|
}
|
|
public void setMinorQuantity(Double minorQuantity) {
|
this.minorQuantity = minorQuantity;
|
}
|
|
/**
|
* @return the minorUom
|
*/
|
public String getMinorUom() {
|
return minorUom;
|
}
|
/**
|
* @param minorUom the minorUom to set
|
*/
|
public void setMinorUom(String minorUom) {
|
this.minorUom = minorUom;
|
}
|
/**
|
* @return the consumeTime
|
*/
|
public Date getConsumeTime() {
|
return consumeTime;
|
}
|
/**
|
* @param consumeTime the consumeTime to set
|
*/
|
public void setConsumeTime(Date consumeTime) {
|
this.consumeTime = consumeTime;
|
}
|
/**
|
* @return the remark
|
*/
|
public String getRemark() {
|
return remark;
|
}
|
/**
|
* @param remark the remark to set
|
*/
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
/**
|
* @return the attr1
|
*/
|
public String getAttr1() {
|
return attr1;
|
}
|
/**
|
* @param attr1 the attr1 to set
|
*/
|
public void setAttr1(String attr1) {
|
this.attr1 = attr1;
|
}
|
/**
|
* @return the attr2
|
*/
|
public String getAttr2() {
|
return attr2;
|
}
|
/**
|
* @param attr2 the attr2 to set
|
*/
|
public void setAttr2(String attr2) {
|
this.attr2 = attr2;
|
}
|
|
|
|
}
|