package com.yeshi.fanli.entity.bus.search;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.google.gson.annotations.Expose;
|
|
@Table("`yeshi_ec_history_search`")
|
public class HistorySearch {
|
@Column(name="id")
|
private Long id;
|
|
@Column(name="name")
|
@Expose
|
private String name;
|
|
@Column(name="businessId")
|
private String businessId;
|
|
@Column(name="state")
|
private int state;
|
|
@Column(name="createtime")
|
private Date createtime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getBusinessId() {
|
return businessId;
|
}
|
|
public void setBusinessId(String businessId) {
|
this.businessId = businessId;
|
}
|
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|