package com.yeshi.fanli.entity.bus.recommend;
|
|
import java.io.Serializable;
|
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.GenerationType;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
import javax.persistence.Transient;
|
|
import com.yeshi.fanli.entity.common.JumpDetail;
|
|
@Table(name="yeshi_ec_honest")
|
public class Honest implements Serializable{
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@GeneratedValue(strategy=GenerationType.AUTO)
|
private long id;
|
private String name;
|
private String picture;
|
private String bigImg;
|
private int orderBy;
|
private String url;
|
@Transient
|
private JumpDetail jumpDetail; //璺宠浆璇︽儏
|
@Transient
|
private String params;//鍙傛暟
|
|
|
public String getParams() {
|
return params;
|
}
|
public void setParams(String params) {
|
this.params = params;
|
}
|
/**
|
* 1锛�9.9
|
* 2:19.9
|
* 3锛氱壒浠峰ソ璐�
|
* 4锛氬垎浜湁绀�
|
*/
|
private int type;
|
|
public String getUrl() {
|
return url;
|
}
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
public long getId() {
|
return id;
|
}
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public String getBigImg() {
|
return bigImg;
|
}
|
public void setBigImg(String bigImg) {
|
this.bigImg = bigImg;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getPicture() {
|
return picture;
|
}
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
public int getOrderBy() {
|
return orderBy;
|
}
|
public void setOrderBy(int orderBy) {
|
this.orderBy = orderBy;
|
}
|
public int getType() {
|
return type;
|
}
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
|
public JumpDetail getJumpDetail() {
|
return jumpDetail;
|
}
|
public void setJumpDetail(JumpDetail jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
|
|
}
|