package com.jiuqi.mobile.nigo.comeclose.bean.client; /** *统计下载量的显示类 * * @author mte */ public class DownloadRecordCountBean { private String version;//版本号 private int totalcount;//总共条数 private int type;//客户端类型客 1.大众版 2.管理版 public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public int getTotalcount() { return totalcount; } public void setTotalcount(int totalcount) { this.totalcount = totalcount; } public int getType() { return type; } public void setType(int type) { this.type = type; } }