| | |
| | | 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); |
| | |
| | | |
| | | FebsResponse rechargeWallet(ApiRechargeWalletDto apiRechargeWalletDto); |
| | | |
| | | void updateMemberAgent(Long memberId); |
| | | void updateMemberAgent(Long memberId,String levelCode); |
| | | |
| | | FebsResponse agentDetail(); |
| | | |
| | | 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); |
| | | } |