com.envision.event.bean.GroupByResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eos-event-api-new Show documentation
Show all versions of eos-event-api-new Show documentation
1.0 初版
1.1 增加了event的flag和custom_attr字段。
The newest version!
package com.envision.event.bean;
import java.io.Serializable;
/**
* 在进行groupby统计类查询的时候的返回结果
*
* Created by haifeng.zhu on 2018/8/10.
*/
public class GroupByResult implements Serializable {
private static final long serialVersionUID = 1L;
private String groupByField;
private Integer count;
public GroupByResult(){}
public GroupByResult(String field,Integer count){
groupByField = field;
this.count = count;
}
public String getGroupByField() {
return groupByField;
}
public void setGroupByField(String groupByField) {
this.groupByField = groupByField;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy