/**
|
* @Title: SchProdInventory.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: SchProdInventory
|
* @Description: 成品入库记录实体类
|
* @author baoshiwei
|
* @date 2019年5月15日
|
*/
|
public class SchProdInventory implements Serializable{
|
|
private String id; // 主键id
|
private String materialCode; // 成品牌号
|
private String traceCode; // 在制品追溯码
|
private String yhgcm; // 一号工程码
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private Date time; // 入库时间
|
private String remark; // 备注
|
|
|
/**
|
* @return the id
|
*/
|
public String getId() {
|
return id;
|
}
|
/**
|
* @param id the id to set
|
*/
|
public void setId(String id) {
|
this.id = id;
|
}
|
/**
|
* @return the materialCode
|
*/
|
public String getMaterialCode() {
|
return materialCode;
|
}
|
/**
|
* @param materialCode the materialCode to set
|
*/
|
public void setMaterialCode(String materialCode) {
|
this.materialCode = materialCode;
|
}
|
/**
|
* @return the traceCode
|
*/
|
public String getTraceCode() {
|
return traceCode;
|
}
|
/**
|
* @param traceCode the traceCode to set
|
*/
|
public void setTraceCode(String traceCode) {
|
this.traceCode = traceCode;
|
}
|
/**
|
* @return the yhgcm
|
*/
|
public String getYhgcm() {
|
return yhgcm;
|
}
|
/**
|
* @param yhgcm the yhgcm to set
|
*/
|
public void setYhgcm(String yhgcm) {
|
this.yhgcm = yhgcm;
|
}
|
/**
|
* @return the time
|
*/
|
public Date getTime() {
|
return time;
|
}
|
/**
|
* @param time the time to set
|
*/
|
public void setTime(Date time) {
|
this.time = time;
|
}
|
/**
|
* @return the remark
|
*/
|
public String getRemark() {
|
return remark;
|
}
|
/**
|
* @param remark the remark to set
|
*/
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
|
}
|