admin
2019-06-25 a0a5b70e0d0df9357d09542f20dc6633a986f328
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
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);
 
}