package com.ruoyi.shop.service.shop;
|
|
import com.github.binarywang.wxpay.bean.ecommerce.ApplymentsStatusResult;
|
import com.ruoyi.shop.domain.pojo.shop.ShopAuthentication;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 商户信息 服务类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-06-02
|
*/
|
public interface ShopAuthenticationService extends IService<ShopAuthentication> {
|
|
/**
|
* 获取需要更新状态的 微信二级商户认证审核
|
* @return
|
*/
|
List<ShopAuthentication> getShopAuthNeedUpdateStatus();
|
|
/**
|
* 修改微信审核状态
|
* @param applymentId
|
* @param result
|
*/
|
void updateAuditStatusByApplymentId(String applymentId, ApplymentsStatusResult result);
|
|
/**
|
* 获取商户认证信息
|
* @param shopId
|
* @return
|
*/
|
ShopAuthentication getByShopId(Long shopId);
|
}
|