package com.landy.gum.out.model;
|
|
import java.util.Date;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
import com.landy.framework.core.model.BaseModel;
|
import com.landy.framework.core.model.OperationLog;
|
|
/**
|
* Model class for OutQinglingDetail
|
*/
|
@Entity
|
@Table(name = "out_qingling_detail")
|
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
|
public class OutQinglingDetailModel extends BaseModel implements OperationLog {
|
|
//ouqdId
|
private String ouqdId;
|
//ouqdOuqlId
|
private String ouqdOuqlId;
|
//ouqdBbprId
|
private String ouqdBbprId;
|
//ouqdBbbpId
|
private String ouqdBbbpId;
|
//ouqdSize
|
private Double ouqdSize;
|
//ouqdSendSize
|
private Double ouqdSendSize;
|
//ouqdState
|
private String ouqdState;
|
//ouqdLocationid
|
private Integer ouqdLocationid;
|
//ouqdRemark
|
private String ouqdRemark;
|
//creator
|
private String creator;
|
//createTime
|
private Date createTime;
|
//modifier
|
private String modifier;
|
//modifyTime
|
private Date modifyTime;
|
|
/**
|
* Get ouqdId
|
*/
|
@Column(name = "ouqd_id")
|
@Id @GeneratedValue(generator = "UUIDGenerator")
|
public String getOuqdId() {
|
return ouqdId;
|
}
|
|
/**
|
* Set ouqdId
|
*/
|
public void setOuqdId(String ouqdId) {
|
this.ouqdId = ouqdId;
|
addValidField("ouqdId");
|
}
|
|
/**
|
* Get ouqdOuqlId
|
*/
|
@Column(name = "ouqd_ouql_id")
|
public String getOuqdOuqlId() {
|
return ouqdOuqlId;
|
}
|
|
/**
|
* Set ouqdOuqlId
|
*/
|
public void setOuqdOuqlId(String ouqdOuqlId) {
|
this.ouqdOuqlId = ouqdOuqlId;
|
addValidField("ouqdOuqlId");
|
}
|
|
/**
|
* Get ouqdBbprId
|
*/
|
@Column(name = "ouqd_bbpr_id")
|
public String getOuqdBbprId() {
|
return ouqdBbprId;
|
}
|
|
/**
|
* Set ouqdBbprId
|
*/
|
public void setOuqdBbprId(String ouqdBbprId) {
|
this.ouqdBbprId = ouqdBbprId;
|
addValidField("ouqdBbprId");
|
}
|
|
/**
|
* Get ouqdBbbpId
|
*/
|
@Column(name = "ouqd_bbbp_id")
|
public String getOuqdBbbpId() {
|
return ouqdBbbpId;
|
}
|
|
/**
|
* Set ouqdBbbpId
|
*/
|
public void setOuqdBbbpId(String ouqdBbbpId) {
|
this.ouqdBbbpId = ouqdBbbpId;
|
addValidField("ouqdBbbpId");
|
}
|
|
/**
|
* Get ouqdSize
|
*/
|
@Column(name = "ouqd_size")
|
public Double getOuqdSize() {
|
return ouqdSize;
|
}
|
|
/**
|
* Set ouqdSize
|
*/
|
public void setOuqdSize(Double ouqdSize) {
|
this.ouqdSize = ouqdSize;
|
addValidField("ouqdSize");
|
}
|
|
/**
|
* Get ouqdSendSize
|
*/
|
@Column(name = "ouqd_send_size")
|
public Double getOuqdSendSize() {
|
return ouqdSendSize;
|
}
|
|
/**
|
* Set ouqdSendSize
|
*/
|
public void setOuqdSendSize(Double ouqdSendSize) {
|
this.ouqdSendSize = ouqdSendSize;
|
addValidField("ouqdSendSize");
|
}
|
|
/**
|
* Get ouqdState
|
*/
|
@Column(name = "ouqd_state")
|
public String getOuqdState() {
|
return ouqdState;
|
}
|
|
/**
|
* Set ouqdState
|
*/
|
public void setOuqdState(String ouqdState) {
|
this.ouqdState = ouqdState;
|
addValidField("ouqdState");
|
}
|
|
/**
|
* Get ouqdLocationid
|
*/
|
@Column(name = "ouqd_locationid")
|
public Integer getOuqdLocationid() {
|
return ouqdLocationid;
|
}
|
|
/**
|
* Set ouqdLocationid
|
*/
|
public void setOuqdLocationid(Integer ouqdLocationid) {
|
this.ouqdLocationid = ouqdLocationid;
|
addValidField("ouqdLocationid");
|
}
|
|
/**
|
* Get ouqdRemark
|
*/
|
@Column(name = "ouqd_remark")
|
public String getOuqdRemark() {
|
return ouqdRemark;
|
}
|
|
/**
|
* Set ouqdRemark
|
*/
|
public void setOuqdRemark(String ouqdRemark) {
|
this.ouqdRemark = ouqdRemark;
|
addValidField("ouqdRemark");
|
}
|
|
/**
|
* Get creator
|
*/
|
@Column(name = "creator")
|
public String getCreator() {
|
return creator;
|
}
|
|
/**
|
* Set creator
|
*/
|
public void setCreator(String creator) {
|
this.creator = creator;
|
addValidField("creator");
|
}
|
|
/**
|
* Get createTime
|
*/
|
@Column(name = "create_time")
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
/**
|
* Set createTime
|
*/
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
addValidField("createTime");
|
}
|
|
/**
|
* Get modifier
|
*/
|
@Column(name = "modifier")
|
public String getModifier() {
|
return modifier;
|
}
|
|
/**
|
* Set modifier
|
*/
|
public void setModifier(String modifier) {
|
this.modifier = modifier;
|
addValidField("modifier");
|
}
|
|
/**
|
* Get modifyTime
|
*/
|
@Column(name = "modify_time")
|
public Date getModifyTime() {
|
return modifyTime;
|
}
|
|
/**
|
* Set modifyTime
|
*/
|
public void setModifyTime(Date modifyTime) {
|
this.modifyTime = modifyTime;
|
addValidField("modifyTime");
|
}
|
|
}
|