package com.ruoyi.shop.service.shop;
|
|
import com.ruoyi.shop.domain.dto.MerShopCertificateEditDto;
|
import com.ruoyi.shop.domain.dto.MerShopCertificateListDto;
|
import com.ruoyi.shop.domain.pojo.shop.ShopCertificate;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.shop.domain.vo.MerShopCertificateListVo;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 商户证书 服务类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-04-25
|
*/
|
public interface ShopCertificateService extends IService<ShopCertificate> {
|
/**
|
* 通过商户id获取商户证书
|
* @param shopId
|
* @return
|
*/
|
List<ShopCertificate> listShopCertificateByShopId(Long shopId);
|
|
/**
|
*
|
* @param merShopCertificateListDto
|
* @return
|
*/
|
List<MerShopCertificateListVo> listShopCertificateVo(MerShopCertificateListDto merShopCertificateListDto);
|
|
/**
|
*
|
* @param merShopCertificateEditDto
|
*/
|
void editShopCertificate(MerShopCertificateEditDto merShopCertificateEditDto);
|
|
/**
|
*
|
* @param certId
|
*/
|
void deleteShopCertificate(Long certId);
|
}
|