fix
Helius
2021-12-09 9352363a087a54fba35a6f9aafc8a6b06f85fda5
src/main/java/cc/mrbird/febs/mall/service/IAdminMallMemberService.java
@@ -5,6 +5,7 @@
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.vo.*;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
@@ -61,4 +62,24 @@
    AppVersion getAppVersionInfoById(long id);
    FebsResponse updateAppVersion(AppVersion appVersion);
    FebsResponse activateAccount(Long id);
    MallNewsInfo getNewsInfoById(long id);
    IPage<AdminMallNewsInfoVo> getNewInfoList(MallNewsInfo mallNewsInfo, QueryRequest request);
    FebsResponse addNewsInfo(MallNewsInfoDto mallNewsInfoDto);
    FebsResponse delNewsInfo(Long id);
    FebsResponse updateNewsInfo(MallNewsInfoDto mallNewsInfoDto);
    FebsResponse updateSystemPay(MallSystemPayDto mallSystemPayDto);
    AdminAgentLevelSetInfoVo getAgentLevelSetInfoByMemberId(long id);
    FebsResponse agentLevelSetUpdate(AgentLevelSetUpdateDto agentLevelSetUpdateDto);
    FebsResponse resetPwd(Long id);
}