BaseStatisticsVo.java 750 Bytes
package com.viontech.vo;

/**
 * @program: event_data_handle
 * @description: 报表统计基础类
 * @author: authorName
 * @create: 2019-12-26 14:38
 **/
public class BaseStatisticsVo {
    String start_dt;

    String end_dt;

    String eventType;

    public String getStart_dt() {
        return start_dt;
    }

    public void setStart_dt(String start_dt) {
        this.start_dt = start_dt;
    }

    public String getEnd_dt() {
        return end_dt;
    }

    public void setEnd_dt(String end_dt) {
        this.end_dt = end_dt;
    }

    public String getEventType() {
        return eventType;
    }

    public void setEventType(String eventType) {
        this.eventType = eventType;
    }
}