package com.newvideo.zhibo.entity;
|
|
public class ZhiBoStatisticsDetail {
|
private String id;
|
private String rid;
|
private int type;
|
private String hour;
|
private int count;
|
|
public ZhiBoStatisticsDetail(String rid, int type, String hour, int count) {
|
this.rid = rid;
|
this.type = type;
|
this.hour = hour;
|
this.count = count;
|
}
|
|
public ZhiBoStatisticsDetail() {
|
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getRid() {
|
return rid;
|
}
|
|
public void setRid(String rid) {
|
this.rid = rid;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public String getHour() {
|
return hour;
|
}
|
|
public void setHour(String hour) {
|
this.hour = hour;
|
}
|
|
public int getCount() {
|
return count;
|
}
|
|
public void setCount(int count) {
|
this.count = count;
|
}
|
}
|