jiangqs
2023-06-12 924242a73d62d247f7055ffd0dd86a2700757f5b
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
package com.ruoyi.shop.mapper.shop;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.shop.domain.dto.MerShopCertificateListDto;
import com.ruoyi.shop.domain.dto.MgtShopCertificatePageDto;
import com.ruoyi.shop.domain.pojo.shop.ShopCertificate;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.shop.domain.vo.MerShopCertificateListVo;
import com.ruoyi.shop.domain.vo.MgtShopCertificatePageVo;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 商户证书 Mapper 接口
 * </p>
 *
 * @author jqs
 * @since 2023-04-25
 */
public interface ShopCertificateMapper extends BaseMapper<ShopCertificate> {
 
 
    /**
     *
     * @param merShopCertificateListDto
     * @return
     */
    List<MerShopCertificateListVo> listShopCertificateVo(@Param("param") MerShopCertificateListDto merShopCertificateListDto);
 
    /**
     * @description  平台获取证书审核列表
     * @author  jqs
     * @date    2023/6/12 17:14
     * @param page
     * @param mgtShopCertificatePageDto
     * @return  List<MgtShopCertificatePageVo>
     */
    List<MgtShopCertificatePageVo> pageMgtShopCertificate(Page page, @Param("param")MgtShopCertificatePageDto mgtShopCertificatePageDto);
}