fix
Helius
2022-06-02 55810dbe3aa36eb2bbcc4113eb2c85fc3b11b48d
src/main/java/cc/mrbird/febs/mall/service/IAdminMallMemberService.java
@@ -5,6 +5,8 @@
import cc.mrbird.febs.mall.dto.*;
import cc.mrbird.febs.mall.entity.AppVersion;
import cc.mrbird.febs.mall.entity.MallMember;
import cc.mrbird.febs.mall.entity.MallNewsInfo;
import cc.mrbird.febs.mall.entity.MallShopApply;
import cc.mrbird.febs.mall.vo.*;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
@@ -61,4 +63,23 @@
    AppVersion getAppVersionInfoById(long id);
    FebsResponse updateAppVersion(AppVersion appVersion);
    FebsResponse activateAccount(Long id);
    FebsResponse updateSystemPay(MallSystemPayDto mallSystemPayDto);
    AdminAgentLevelSetInfoVo getAgentLevelSetInfoByMemberId(long id);
    FebsResponse agentLevelSetUpdate(AgentLevelSetUpdateDto agentLevelSetUpdateDto);
    FebsResponse resetPwd(Long id);
    IPage<MallDataVo> getMallDataList(MallMember mallMember, QueryRequest request);
    IPage<MallShopApply> findShopApplyListInPage(MallShopApply mallShopApply, QueryRequest request);
    MallShopApply findShopApplyById(Long id);
    void applyCheckAgree(Long id);
    void applyCheckDisAgree(Long id);
}