Newer
Older
huludao / src / main / java / com / newfiber / api / pc / model / EventsManage / EventStatistics.java
@新烽开发者 新烽开发者 on 22 Jul 503 bytes init
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;
    }
}