package com.yeshi.fanli.entity.bus.user;
|
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.GenerationType;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
/**
|
* 页面上那些假的用户数据
|
* @author cxx
|
*
|
* @date 2018年1月29日
|
*/
|
@Table(name="yeshi_ec_three_sale_rank")
|
public class ThreeSaleRank {
|
|
@Id
|
@GeneratedValue(strategy=GenerationType.AUTO)
|
private long id;
|
private String name;
|
private String pic;
|
private String money;
|
|
public long getId() {
|
return id;
|
}
|
public void setId(long id) {
|
this.id = id;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getPic() {
|
return pic;
|
}
|
public void setPic(String pic) {
|
this.pic = pic;
|
}
|
public String getMoney() {
|
return money;
|
}
|
public void setMoney(String money) {
|
this.money = money;
|
}
|
|
|
|
}
|