ChannelParamService.java 856 Bytes
Newer Older
shenggui.li committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
package com.reyun.service;

import com.reyun.model.Account;
import com.reyun.model.ChannelParam;
import com.reyun.model.PreorderParam;

/**
 * Created by mxq on 2017/9/11.
 */
public interface ChannelParamService {

    Object update(boolean isdefault, boolean isall, ChannelParam resourse, Long loginAccount, String type,String validFunction);

    ChannelParam findOne(Long cid, Long loginAccount,Long app);

    ChannelParam findDefault();

    ChannelParam findDefaultByBlack();

    ChannelParam find(Long loginAccount,Long app);

    Object updateImpression(ChannelParam resourse, Long id);

    Boolean updateImp(Long cid, Boolean impStatus, Long accountid,Long app);

    Object backflowAttrNum(Long app, Integer backflowAttrNum, Long id);

    Object getBackflowAttrNum(Long app);

    Object updatePreorder(PreorderParam resourse, Account id);
}