1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.sinata.modular.mall.service;
|
| import com.sinata.modular.mall.model.CommissionSettlementMonth;
| import com.baomidou.mybatisplus.service.IService;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * <p>
| * 佣金月结算 服务类
| * </p>
| *
| * @author fq
| * @since 2023-04-22
| */
| public interface ICommissionSettlementMonthService extends IService<CommissionSettlementMonth> {
|
| List<CommissionSettlementMonth> queryList(String beginTime, String endTime, String name, String showId, String area, String cityCode, Integer gradeId, String month, Integer pageNo, Integer pageSize);
| Integer queryListCount(String beginTime, String endTime, String name, String showId, String area, String cityCode, Integer gradeId, String month);
|
| void addList(List<CommissionSettlementMonth> addMonthList);
|
| }
|
|