package com.ruoyi.shop.mapper.shop;
|
|
import com.ruoyi.shop.domain.dto.MerShopCertificateListDto;
|
import com.ruoyi.shop.domain.pojo.shop.ShopCertificate;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.shop.domain.vo.MerShopCertificateListVo;
|
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);
|
}
|