package com.newvideo.zhibo.entity;
|
|
import java.util.Set;
|
|
import com.google.gson.annotations.Expose;
|
import com.newvideo.domain.DetailSystem;
|
|
public class LiveType {
|
@Expose
|
private long id;
|
@Expose
|
private String name;
|
private Set<DetailSystem> systems;
|
@Expose
|
private String pic;
|
private long createtime;
|
private int orderby;
|
private String tag;
|
|
public long getId() {
|
return id;
|
}
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public String getTag() {
|
return tag;
|
}
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
public int getOrderby() {
|
return orderby;
|
}
|
public void setOrderby(int orderby) {
|
this.orderby = orderby;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public Set<DetailSystem> getSystems() {
|
return systems;
|
}
|
public void setSystems(Set<DetailSystem> systems) {
|
this.systems = systems;
|
}
|
public String getPic() {
|
return pic;
|
}
|
public void setPic(String pic) {
|
this.pic = pic;
|
}
|
public long getCreatetime() {
|
return createtime;
|
}
|
public void setCreatetime(long createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|