package com.yeshi.fanli.service.inter.tlj;
|
|
import java.math.BigDecimal;
|
|
import com.yeshi.fanli.entity.bus.tlj.GoodsTaoLiJinRate;
|
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
|
public interface GoodsTaoLiJinRateService {
|
|
/**
|
* 根据key值查询
|
* @param key
|
* @return
|
*/
|
public GoodsTaoLiJinRate getById(Long goodId);
|
|
|
/**
|
* 获取商品推广红包
|
* @param goods
|
* @return
|
*/
|
public BigDecimal getGoodsSpreadMoney(TaoBaoGoodsBrief goods);
|
|
}
|