package com.landy.gum.production.query;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class GetOrderDetailUnFinishEntryQueryItem extends BaseQueryItem {
|
|
private Long unFinishEntrySize;
|
|
@Column(name = "unFinishEntrySize")
|
public Long getUnFinishEntrySize() {
|
return unFinishEntrySize;
|
}
|
|
public void setUnFinishEntrySize(Long unFinishEntrySize) {
|
this.unFinishEntrySize = unFinishEntrySize;
|
addValidField("unFinishEntrySize");
|
}
|
|
}
|