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
| package com.sinata.rest.modular.mall.service;
|
| import com.sinata.rest.modular.mall.model.MallGoodsSet;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| import java.math.BigDecimal;
|
| /**
| * <p>
| * 商品系数设置 服务类
| * </p>
| *
| * @author goku
| * @since 2023-05-06
| */
| public interface IMallGoodsSetService extends IService<MallGoodsSet> {
| /**
| * 获取商品设置业绩
| */
| MallGoodsSet getGoodsSetPerformance(Integer goodsId, BigDecimal amount);
|
| /**
| * 获取职级业绩
| * @param memberGradeId
| * @param goodsSet
| * @return
| */
| BigDecimal getPerformanceByGrade(Integer memberGradeId, MallGoodsSet goodsSet);
|
| }
|
|