package com.landy.gum.caigou.query;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class FindStuffEntryDetailVolumeQueryItem extends BaseQueryItem {
|
|
private Integer cgsdId;
|
private String cgsdVolume;
|
private Double cgsdNowAmountW;
|
private Double countIopd;
|
|
@Column(name = "cgsd_id")
|
public Integer getCgsdId() {
|
return cgsdId;
|
}
|
|
public void setCgsdId(Integer cgsdId) {
|
this.cgsdId = cgsdId;
|
addValidField("cgsdId");
|
}
|
|
@Column(name = "cgsd_volume")
|
public String getCgsdVolume() {
|
return cgsdVolume;
|
}
|
|
public void setCgsdVolume(String cgsdVolume) {
|
this.cgsdVolume = cgsdVolume;
|
addValidField("cgsdVolume");
|
}
|
|
@Column(name = "cgsd_now_amount_w")
|
public Double getCgsdNowAmountW() {
|
return cgsdNowAmountW;
|
}
|
|
public void setCgsdNowAmountW(Double cgsdNowAmountW) {
|
this.cgsdNowAmountW = cgsdNowAmountW;
|
addValidField("cgsdNowAmountW");
|
}
|
|
@Column(name = "countIopd")
|
public Double getCountIopd() {
|
return countIopd;
|
}
|
|
public void setCountIopd(Double countIopd) {
|
this.countIopd = countIopd;
|
addValidField("countIopd");
|
}
|
|
}
|