package com.reyun.service;


import com.reyun.model.Account;
import com.reyun.model.AccountRestrict4Web;

import java.math.BigInteger;
import java.util.List;
import java.util.Map;

public interface AutoTodayFlowService {


    AccountRestrict4Web autoTodayFlowTask(Account id);

    AccountRestrict4Web autoTodayFlowTaskWithNotify(Account account, int type);

    List getTotalClickImpression(Map data, String reportName);

    String getEailContent(Account rootAccount, BigInteger totalUse, int tipType);

    Map getUserFlowOrTip(Account loginAccount);

    void getBussiness(Account rootAccount, List<String> bccList, List<String> accountMail);

    void packageFlowNotify(AccountRestrict4Web restrict4Web, Account account);


}