package com.landy.gum.out.query;
|
|
import java.util.Date;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class PsingLeftQueryItem extends BaseQueryItem {
|
|
private Date ouqpDate;
|
private Long wancheng;
|
|
@Column(name = "ouqp_date")
|
public Date getOuqpDate() {
|
return ouqpDate;
|
}
|
|
public void setOuqpDate(Date ouqpDate) {
|
this.ouqpDate = ouqpDate;
|
addValidField("ouqpDate");
|
}
|
|
@Column(name = "wancheng")
|
public Long getWancheng() {
|
return wancheng;
|
}
|
|
public void setWancheng(Long wancheng) {
|
this.wancheng = wancheng;
|
addValidField("wancheng");
|
}
|
|
}
|