mitao
2024-07-08 022a7ff7abf82cd2546e18071ade5228b4e2339f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.sinata.modular.mall.dao;
 
import com.sinata.modular.mall.model.CommissionSettlementMonth;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 佣金月结算 Mapper 接口
 * </p>
 *
 * @author fq
 * @since 2023-04-22
 */
public interface CommissionSettlementMonthMapper extends BaseMapper<CommissionSettlementMonth> {
    List<CommissionSettlementMonth> queryList(@Param("beginTime") String beginTime, @Param("endTime") String endTime, @Param("name") String name, @Param("showId") String showId, @Param("area") String area, @Param("cityCode") String cityCode, @Param("gradeId") Integer gradeId, @Param("month") String month, @Param("offset") Integer offset, @Param("size") Integer size);
    Integer queryListCount(@Param("beginTime") String beginTime, @Param("endTime") String endTime, @Param("name") String name, @Param("showId") String showId, @Param("area") String area, @Param("cityCode") String cityCode, @Param("gradeId") Integer gradeId, @Param("month") String month);
    void addList(@Param("addMonthList") List<CommissionSettlementMonth> addMonthList);
}