package com.shlanbao.tzsc.base.mapping;
|
|
import java.util.Date;
|
|
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
|
|
/**
|
* [功能说明]:物料锁定
|
*
|
* @createTime 2019年5月15日11:41:21
|
* @author wanchanghuang
|
*/
|
|
public class MdMaterialLk implements java.io.Serializable {
|
|
|
private String id;
|
private String materialCode; //物料编码
|
private String materialBatchCode; //批次号
|
private String type; //0-解锁 1-锁定
|
@DateFmtAnnotation(fmtPattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createDate;
|
@DateFmtAnnotation(fmtPattern = "yyyy-MM-dd HH:mm:ss")
|
private Date updateDate;
|
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getMaterialCode() {
|
return materialCode;
|
}
|
public void setMaterialCode(String materialCode) {
|
this.materialCode = materialCode;
|
}
|
public String getMaterialBatchCode() {
|
return materialBatchCode;
|
}
|
public void setMaterialBatchCode(String materialBatchCode) {
|
this.materialBatchCode = materialBatchCode;
|
}
|
public String getType() {
|
return type;
|
}
|
public void setType(String type) {
|
this.type = type;
|
}
|
public Date getCreateDate() {
|
return createDate;
|
}
|
public void setCreateDate(Date createDate) {
|
this.createDate = createDate;
|
}
|
public Date getUpdateDate() {
|
return updateDate;
|
}
|
public void setUpdateDate(Date updateDate) {
|
this.updateDate = updateDate;
|
}
|
|
}
|