StatisticsDecResult.java
770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* @Title: StatisticsDecResult.java
* @Package com.bjivt.entity.vo
* @Description: TODO(用一句话描述该文件做什么)
* @author Yh.T
* @date 2016年7月29日 下午2:02:57
* @version
*/
package com.bjivt.entity.vo;
/**
* 项目名称:admin
*
* 类描述:
* 类名称:com.bjivt.entity.vo.StatisticsDecResult
* Yh.T
* 创建时间:2016年7月29日 下午2:02:57
* 修改备注:
* @version
*/
public class StatisticsDecResult {
private String time;//时间
private float counts; //百分率
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public float getCounts() {
return counts;
}
public void setCounts(float counts) {
this.counts = counts;
}
}