QryOnlineRateOfMonthService.java 367 Bytes
Newer Older
zhaojg committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.brilliance.service;

import com.alibaba.fastjson.JSONObject;
import com.brilliance.bo.*;

/**
 * 2.3.17.按年统计每月在线率
 */
public interface QryOnlineRateOfMonthService {
    /**
     * 2.3.17.按年统计每月在线率
     * @return
     */
    JSONObject getOnlineRateOfMonth(ReqOnlineRateOfMonthBo req) throws Exception;
}