AccountFlowRestrictService.java 459 Bytes
Newer Older
manxiaoqiang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package tkio.service;



import tkio.model.AccountRestrict4Web;

import java.math.BigInteger;

/**
 * Created by song on 2017/10/19.
 */
public interface AccountFlowRestrictService {
    AccountRestrict4Web findRestrictByAccount(Long accountId);
    BigInteger getTotalNum(String createTime, String pastDate, String appids, String reportName, String sumType);
    Boolean isTrackAndIoBothExhaust(Long accountId);
    Boolean isTrackExhaust(Long accountId);
}