package com.newfiber.api.pc.model.EventsManage; /** * Created by Administrator on 2019/1/31. */ public class EventStatistics { private String typeName; private int eventCount; public String getTypeName() { return typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } public int getEventCount() { return eventCount; } public void setEventCount(int eventCount) { this.eventCount = eventCount; } }