jiangqs
2023-06-18 c00d0d3bc399b6648145dfd955cedbea90f5f99d
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.ruoyi.system.mapper.config;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.system.domain.dto.MerShopRecommendPageDto;
import com.ruoyi.system.domain.dto.MgtAllotRecommendDto;
import com.ruoyi.system.domain.dto.MgtAllotRecommendPageDto;
import com.ruoyi.system.domain.pojo.config.RecommendCooperation;
import com.ruoyi.system.domain.vo.MerShopRecommendPageVo;
import com.ruoyi.system.domain.vo.MgtAllotRecommendPageVo;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author jqs
 * @since 2023-05-09
 */
public interface RecommendCooperationMapper extends BaseMapper<RecommendCooperation> {
 
    /**
     *
     * @param page
     * @param merShopRecommendPageDto
     * @return
     */
    List<MerShopRecommendPageVo> pageMerShopRecommend(Page page, @Param("param") MerShopRecommendPageDto merShopRecommendPageDto);
 
    /**
     * @description pageAllotRecommend
     * @param page
     * @param mgtAllotRecommendPageDto
     * @return List<MgtAllotRecommendPageVo>
     * @author jqs34
     * @date 2023/6/18 14:28
     */
    List<MgtAllotRecommendPageVo> pageAllotRecommend(Page page,  @Param("param")MgtAllotRecommendPageDto mgtAllotRecommendPageDto);
 
    /**
     * @description 分配推荐
     * @param mgtAllotRecommendDto
     * @return void
     * @author jqs34
     * @date 2023/6/18 14:40
     */
    void allotRecommend(@Param("param")MgtAllotRecommendDto mgtAllotRecommendDto);
 
 
    /**
    * @description customTotal
    * @param
    * @return Integer
    * @author jqs34
    * @date 2023/6/18 16:54
    */
    Integer customTotal();
 
    /**
    * @description customToday
    * @param
    * @return Integer
    * @author jqs34
    * @date 2023/6/18 16:54
    */
    Integer customToday();
}