package com.yeshi.fanli.entity.bus.su.search;
|
|
import java.io.Serializable;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.yeshi.fanli.entity.bus.search.HotSearch;
|
import com.yeshi.fanli.entity.system.BusinessSystem;
|
|
|
@Table("yeshi_ec_super_hot_search")
|
public class SuperHotSearch implements Serializable{
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Column(name = "id")
|
private Long id;
|
|
@Column(name="system_id")
|
private BusinessSystem system;
|
|
@Column(name="hotSearch_id")
|
private HotSearch hotSearch;
|
|
public SuperHotSearch() {
|
}
|
|
public SuperHotSearch(BusinessSystem system, HotSearch hotSearch) {
|
super();
|
this.system = system;
|
this.hotSearch = hotSearch;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public BusinessSystem getSystem() {
|
return system;
|
}
|
|
public void setSystem(BusinessSystem system) {
|
this.system = system;
|
}
|
|
public HotSearch getHotSearch() {
|
return hotSearch;
|
}
|
|
public void setHotSearch(HotSearch hotSearch) {
|
this.hotSearch = hotSearch;
|
}
|
|
}
|