From d09828cdec78a160f4530a8ab245216ed8671c27 Mon Sep 17 00:00:00 2001
From: liujie <liujie>
Date: 星期三, 20 九月 2023 18:43:48 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java |  134 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 133 insertions(+), 1 deletions(-)

diff --git a/cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java b/cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java
index f1709fe..1d4aa55 100644
--- a/cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java
+++ b/cloud-server-account/src/main/java/com/dsh/account/service/TAppUserService.java
@@ -1,8 +1,24 @@
 package com.dsh.account.service;
 
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.dsh.account.dto.SelectDto;
 import com.dsh.account.entity.TAppUser;
-import com.baomidou.mybatisplus.service.IService;
+import com.dsh.account.model.AddAppUserVo;
+import com.dsh.account.model.JoinPlayPaiVo;
+import com.dsh.account.model.LoginSMSCodeVo;
+import com.dsh.account.model.LoginWeChatVo;
+import com.dsh.account.model.query.appUserQuery.QueryAppUser;
+import com.dsh.account.model.vo.DetailsListVo;
+import com.dsh.account.model.vo.QueryAppUserVO;
+import com.dsh.account.model.vo.classDetails.CourseVenue;
 import com.dsh.account.model.vo.classDetails.classInsVo.ClassInfoVo;
+import com.dsh.account.model.vo.userBenefitDetail.*;
+import com.dsh.account.util.ResultUtil;
+import org.springframework.web.multipart.MultipartFile;
+
+import javax.servlet.http.HttpServletRequest;
+import java.util.List;
+import java.util.Map;
 
 /**
  * <p>
@@ -15,4 +31,120 @@
 public interface TAppUserService extends IService<TAppUser> {
 
     ClassInfoVo queryUserOfStus(Integer id);
+
+
+    /**
+     * 获取短信验证码
+     * @param type
+     * @param phone
+     * @return
+     * @throws Exception
+     */
+    ResultUtil getSMSCode(Integer type, String phone) throws Exception;
+
+
+    /**
+     * 注册账号
+     * @return
+     * @throws Exception
+     */
+    ResultUtil addAppUser(AddAppUserVo addAppUserVo) throws Exception;
+
+
+    /**
+     * 账号密码登录
+     * @param phone
+     * @param password
+     * @return
+     * @throws Exception
+     */
+    ResultUtil loginPassword(String phone, String password) throws Exception;
+
+
+    /**
+     * 验证码登录
+     * @return
+     * @throws Exception
+     */
+    ResultUtil loginSMSCode(LoginSMSCodeVo loginSMSCodeVo) throws Exception;
+
+
+    /**
+     * 微信登录
+     * @return
+     * @throws Exception
+     */
+    ResultUtil loginWechat(LoginWeChatVo loginWechatVo) throws Exception;
+
+
+    /**
+     * 修改密码
+     * @param phone
+     * @param code
+     * @param password
+     * @return
+     * @throws Exception
+     */
+    ResultUtil updatePassword(String phone, String code, String password) throws Exception;
+
+
+    /**
+     * 定时任务修改到期会员的状态
+     */
+    void membershipEnd();
+
+
+    /**
+     * 获取加入玩湃首页数据
+     * @param lon
+     * @param lat
+     * @return
+     * @throws Exception
+     */
+    JoinPlayPaiVo queryJoinPlayPai(Integer uid, String lon, String lat) throws Exception;
+
+    /**
+     * 获取使用福利首页数据
+     * @param appUserId
+     * @return
+     */
+    IndexOfUserBenefirVo queryBenefitDetails(Integer appUserId);
+
+    /**
+     * 获取用户账单列表
+     * @param yearMonth 年月
+     * @param recordId 记录
+     * @return
+     */
+    List<ConsumeDetail>  queryUserBillingDetails(String yearMonth, Integer recordId,Integer appUserId);
+
+    /**
+     * 注销账号
+     * @param appUserId
+     */
+    void cancellation(Integer appUserId);
+
+    List<RechargeCentVo> getSysRechargeConfig(Integer appUserId);
+
+    List<Goods> queryAppUserIntegral(MallRequest request);
+
+
+    ProductDetailsVo productDetails(Integer goodId, Integer goodsType );
+
+    StuAndStoreResponse queryAppUserDefaultStuAndStore(Integer userIdFormRedis ,Integer pointsMerId, String lat, String lon,Integer isCourse);
+
+    ResultUtil productRedemptionOperation(Integer userIdFormRedis, GoodsExchangeVo exchangeVo);
+
+    ResultUtil exchangeAddPaymentCallback(String code, String orderNumber,Integer payType);
+
+    List<StoreResponse> queryStoresOfExchange(Integer goodsType,Integer pointsMerId);
+
+    List<CourseVenue> queryWeekOfCourseDetails(Integer appUserId ,Integer stuId, String time, String longitude, String latitude);
+
+    List<QueryAppUserVO> listAll(QueryAppUser query);
+
+    Map<String,Object> weeksOfCourseDetailsList(Integer appUserId, Integer stuId, String time, Integer storeId,String lon,String lat);
+
+
+    List<SelectDto> getSelects(List<Integer> studentIds);
 }

--
Gitblit v1.7.1