package com.landy.gum.base.query;
|
|
import java.util.Date;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
|
import com.landy.framework.core.query.BaseQueryItem;
|
|
@Entity
|
public class ScmLogQueryItem extends BaseQueryItem {
|
|
private String scmlId;
|
private String scmlIp;
|
private Date createTime;
|
private String creator;
|
private String scmlType;
|
private String scmlOperation;
|
private Integer scmlLocationid;
|
|
@Column(name = "scml_id")
|
public String getScmlId() {
|
return scmlId;
|
}
|
|
public void setScmlId(String scmlId) {
|
this.scmlId = scmlId;
|
addValidField("scmlId");
|
}
|
|
@Column(name = "scml_ip")
|
public String getScmlIp() {
|
return scmlIp;
|
}
|
|
public void setScmlIp(String scmlIp) {
|
this.scmlIp = scmlIp;
|
addValidField("scmlIp");
|
}
|
|
@Column(name = "create_time")
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
addValidField("createTime");
|
}
|
|
@Column(name = "creator")
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator;
|
addValidField("creator");
|
}
|
|
@Column(name = "scml_type")
|
public String getScmlType() {
|
return scmlType;
|
}
|
|
public void setScmlType(String scmlType) {
|
this.scmlType = scmlType;
|
addValidField("scmlType");
|
}
|
|
@Column(name = "scml_operation")
|
public String getScmlOperation() {
|
return scmlOperation;
|
}
|
|
public void setScmlOperation(String scmlOperation) {
|
this.scmlOperation = scmlOperation;
|
addValidField("scmlOperation");
|
}
|
|
@Column(name = "scml_locationid")
|
public Integer getScmlLocationid() {
|
return scmlLocationid;
|
}
|
|
public void setScmlLocationid(Integer scmlLocationid) {
|
this.scmlLocationid = scmlLocationid;
|
addValidField("scmlLocationid");
|
}
|
|
}
|