package yxy.timer.pojo; /** * 程序名称: EspeedMail_时速邮箱 * 程序版本: V1.0 * 作 者: 深圳市科飞时速网络技术有限公司(0755-88843776) * 版权所有: 深圳市科飞时速网络技术有限公司 * 技术支持: Tech@21gmail.com * 单元名称: 查询统计信息实体 * 开始时间: 2016.01.06 * 程 序 员: 陈南巧 * 最后修改: * 备 注: 如需修改请通知程序员 */ public class CountResult { private String name;//显示 private int count;//数量 private String count_id;//数量对应的id public String getName() { return name; } public void setName(String name) { this.name = name; } public int getCount() { return count; } public void setCount(int count) { this.count = count; } public String getCount_id() { return count_id; } public void setCount_id(String countId) { count_id = countId; } }