xiaoyong931011
2022-08-11 267e5f665e7711f66e4a72780898892b61e62244
src/main/java/cc/mrbird/febs/mall/service/IAdminMallMemberService.java
@@ -6,6 +6,7 @@
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;
@@ -20,6 +21,8 @@
    FebsResponse closeAccount(@NotNull(message = "{required}") Long id);
    FebsResponse openAccount(@NotNull(message = "{required}") Long id);
    void changeIdentity(Integer type, Long id, Integer value);
    MallMemberVo getMallMemberInfoById(@NotNull(message = "{required}") long id);
@@ -65,16 +68,6 @@
    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);
@@ -82,4 +75,22 @@
    FebsResponse agentLevelSetUpdate(AgentLevelSetUpdateDto agentLevelSetUpdateDto);
    FebsResponse resetPwd(Long id);
    void resetPwd(String ids, Integer type);
    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);
    FebsResponse updateMemberInfo(MallUpdateMemberInfoDto mallUpdateMemberInfoDto);
    MallMember findByInviteId(String inviteId);
    void modifyReferer(MallMember member);
}