Administrator
1 days ago d257df31070190bc44bc44a52d513243f6c184f5
src/main/java/cc/mrbird/febs/mall/service/IApiMallMemberService.java
@@ -2,6 +2,7 @@
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.mall.dto.*;
import cc.mrbird.febs.mall.dto.memberLevel.*;
import cc.mrbird.febs.mall.entity.MallMember;
import cc.mrbird.febs.mall.entity.MallMemberPayment;
import cc.mrbird.febs.mall.entity.MallShopApply;
@@ -14,6 +15,7 @@
import java.io.IOException;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
public interface IApiMallMemberService extends IService<MallMember> {
    FebsResponse register(RegisterDto registerDto);
@@ -66,7 +68,7 @@
    List<ShopListVo> findShopListVo(ShopListDto shopListDto);
    FebsResponse xcxLogin(ApiXcxLoginDto apiXcxLoginDto) throws IOException;
    FebsResponse xcxLogin(ApiXcxLoginDto apiXcxLoginDto);
    FebsResponse xcxSaveInfo(ApiXcxSaveInfoDto apiXcxSaveInfoDto);
@@ -83,4 +85,55 @@
    FebsResponse activityInfo();
    FebsResponse agentApplyInfo();
    FebsResponse getCoupon(GetCouponDto getCouponDto);
    FebsResponse scanCoupon(GetCouponDto getCouponDto);
    FebsResponse memberCoupon(MallMemberCouponDto mallMemberCouponDto);
    FebsResponse memberPayCoupon(MallMemberCouponDto mallMemberCouponDto);
    FebsResponse couponDetails(Long id);
    FebsResponse setInvite(ApiSetInviteDto apiSetInviteDto);
    Map<String, Object> loginEvent();
    FebsResponse storeList(MallStoreDto mallStoreDto);
    FebsResponse storeItemList(MallStoreItemDto mallStoreItemDto);
    FebsResponse bindStoreMember(BindStoreMemberDto bindStoreMemberDto);
    FebsResponse bindList();
    FebsResponse bindResult(BindResultDto bindResultDto);
    FebsResponse bindDoctor(ApiDoctorBindDto dto);
    FebsResponse doctorList(ApiDoctorListDto dto);
    FebsResponse authList();
    FebsResponse authDel(ApiDoctorAuthDeleteDto dto);
    FebsResponse flowList(ApiMoneyFlowDto dto);
    FebsResponse flowHeader();
    FebsResponse newGiftEvent();
    FebsResponse getLabelList();
    FebsResponse getLabelListById(ApiMemberLabelInfoDto dto);
    FebsResponse scoreRecord(ApiScoreRecordInfoDto dto);
    FebsResponse getMemberLabelListById(ApiMemberLabelItemDto dto);
    FebsResponse addLabelMember(ApiMemberLabelAddDto dto);
    FebsResponse insureLabelMember(ApiMemberLabelInsureDto dto);
    FebsResponse getCompanyCode();
}