package com.yeshi.buwan.domain;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.buwan.domain.system.SystemInfo;
|
|
import javax.persistence.Entity;
|
import javax.persistence.ManyToOne;
|
import java.io.Serializable;
|
|
/**
|
* 最热明星
|
*
|
* @author Administrator
|
*
|
*/
|
@Entity
|
public class HotStar implements Serializable {
|
@Expose
|
private String id;
|
@Expose
|
private String name;
|
@Expose
|
private String createtime;
|
@Expose
|
private String portrait;
|
private AdminInfo admin;
|
private String beizhu;
|
private int orderby;
|
// 职业
|
@Expose
|
private String job;
|
// 国籍
|
@Expose
|
private String country;
|
// 代表作
|
@Expose
|
private String works;
|
|
private SystemInfo system;
|
|
|
|
public HotStar() {
|
|
}
|
|
public HotStar(String id) {
|
this.id = id;
|
}
|
|
public String getJob() {
|
return job;
|
}
|
|
public void setJob(String job) {
|
this.job = job;
|
}
|
|
public String getCountry() {
|
return country;
|
}
|
|
public void setCountry(String country) {
|
this.country = country;
|
}
|
|
public String getWorks() {
|
return works;
|
}
|
|
public void setWorks(String works) {
|
this.works = works;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getPortrait() {
|
return portrait;
|
}
|
|
public void setPortrait(String portrait) {
|
this.portrait = portrait;
|
}
|
|
@ManyToOne
|
public AdminInfo getAdmin() {
|
return admin;
|
}
|
|
public void setAdmin(AdminInfo admin) {
|
this.admin = admin;
|
}
|
|
public String getBeizhu() {
|
return beizhu;
|
}
|
|
public void setBeizhu(String beizhu) {
|
this.beizhu = beizhu;
|
}
|
|
public int getOrderby() {
|
return orderby;
|
}
|
|
public void setOrderby(int orderby) {
|
this.orderby = orderby;
|
}
|
|
public SystemInfo getSystem() {
|
return system;
|
}
|
|
public void setSystem(SystemInfo system) {
|
this.system = system;
|
}
|
}
|