package com.shlanbao.tzsc.base.mapping;
|
|
import java.util.Date;
|
|
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
|
|
/**
|
* 封箱机手动追加-------
|
* @author renguojin
|
*
|
*
|
*/
|
|
public class EqmQtyRecords implements java.io.Serializable {
|
|
private String id;
|
private String oid;
|
private String eqp;
|
private String shift;
|
private Double qty;
|
private String type;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
private String createUserName;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private Date updateTime;
|
private String updateUserName;
|
private String del;
|
|
|
|
|
public EqmQtyRecords() {
|
super();
|
}
|
public EqmQtyRecords(String id, String oid, String eqp, String shift, Double qty, String type, Date createTime,
|
String createUserName, Date updateTime, String updateUserName, String del) {
|
this.oid = oid;
|
this.eqp = eqp;
|
this.shift = shift;
|
this.qty = qty;
|
this.type = type;
|
this.createTime = createTime;
|
this.createUserName = createUserName;
|
this.updateTime = updateTime;
|
this.updateUserName = updateUserName;
|
this.del = del;
|
}
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getOid() {
|
return oid;
|
}
|
public void setOid(String oid) {
|
this.oid = oid;
|
}
|
public String getEqp() {
|
return eqp;
|
}
|
public void setEqp(String eqp) {
|
this.eqp = eqp;
|
}
|
public String getShift() {
|
return shift;
|
}
|
public void setShift(String shift) {
|
this.shift = shift;
|
}
|
public Double getQty() {
|
return qty;
|
}
|
public void setQty(Double qty) {
|
this.qty = qty;
|
}
|
public String getType() {
|
return type;
|
}
|
public void setType(String type) {
|
this.type = type;
|
}
|
public Date getCreateTime() {
|
return createTime;
|
}
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
public String getCreateUserName() {
|
return createUserName;
|
}
|
public void setCreateUserName(String createUserName) {
|
this.createUserName = createUserName;
|
}
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
public String getUpdateUserName() {
|
return updateUserName;
|
}
|
public void setUpdateUserName(String updateUserName) {
|
this.updateUserName = updateUserName;
|
}
|
public String getDel() {
|
return del;
|
}
|
public void setDel(String del) {
|
this.del = del;
|
}
|
|
|
|
|
}
|