From 53e7558400dcacecdce70e39ebfe1727740f9296 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期六, 25 十一月 2023 17:20:06 +0800 Subject: [PATCH] 重写课包支付和排课逻辑 --- cloud-server-account/src/main/java/com/dsh/account/service/TStudentService.java | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 deletions(-) diff --git a/cloud-server-account/src/main/java/com/dsh/account/service/TStudentService.java b/cloud-server-account/src/main/java/com/dsh/account/service/TStudentService.java index 385959a..9b9bd7b 100644 --- a/cloud-server-account/src/main/java/com/dsh/account/service/TStudentService.java +++ b/cloud-server-account/src/main/java/com/dsh/account/service/TStudentService.java @@ -35,23 +35,26 @@ */ public interface TStudentService extends IService<TStudent> { - ResultUtil addStuOfAppUser(StuDetailsReq stu,Integer appUserId) throws Exception; + ResultUtil addStuOfAppUser(StuDetailsReq stu, Integer appUserId) throws Exception; ClassDetailsInsVo querySessionDetailsDt(Integer userIdFormRedis, Integer lessonId, Integer stuId); - List<PurchaseRecordVo> queryDeduRecordDetails(RecordTimeRequest timeRequest,Integer appUserId); + List<PurchaseRecordVo> queryDeduRecordDetails(RecordTimeRequest timeRequest, Integer appUserId); List<CouponStuAvailableVo> queryStuOfConponDetails(Integer appUserId); CourseDetailsOfContinuationResp queryStuOfCourseDetails(Integer lessonId, Integer stuId, Integer appUserId); + /** * 查询探索-公告列表 */ List<SysNotice> querySystemNoticeDetails(); + /** * 查询公告详情 */ SysNotice queryNoticeData(Integer noId); + /** * 查询常见问题列表 */ @@ -83,28 +86,28 @@ /** * 查询学院的上课记录 + * * @param stuId * @param appUserId * @return */ - List<RecordAppoint> getAppointmentRecords(Integer stuId, Integer appUserId, Integer appointStatus, Integer timeType, String search,Integer pageNum); + List<RecordAppoint> getAppointmentRecords(Integer stuId, Integer appUserId, Integer appointStatus, Integer timeType, String search, Integer pageNum); - ResultUtil cancelReservationOfCourse( Integer courseStuRecordId); + ResultUtil cancelReservationOfCourse(Integer courseStuRecordId); /** - * - * @param space 距离 + * @param space 距离 * @param cityCode 城市code * @return */ - List<StoreDetailList> queryStoreList(Integer space,String cityCode,String latitude,String longitude,String search); + List<StoreDetailList> queryStoreList(Integer space, String cityCode, String latitude, String longitude, String search); StoreDetailsVo getStoreDetail(Integer storeId); ResultUtil commitEditStudentInfo(StuEditInfoReq stu, Integer userIdFormRedis); - List<TStudentDto> listAll( StudentSearch search); + List<TStudentDto> listAll(StudentSearch search); TStudentDto listOne(Integer id); -- Gitblit v1.7.1