From 640ff18d2d7f4be02ddb7f8f75e899f05545eb98 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期一, 05 二月 2024 11:56:52 +0800 Subject: [PATCH] 更新bug修改 --- cloud-server-course/src/main/java/com/dsh/course/mapper/TCoursePackagePaymentMapper.java | 37 +++++++++++++++++++++++++++++++------ 1 files changed, 31 insertions(+), 6 deletions(-) diff --git a/cloud-server-course/src/main/java/com/dsh/course/mapper/TCoursePackagePaymentMapper.java b/cloud-server-course/src/main/java/com/dsh/course/mapper/TCoursePackagePaymentMapper.java index e5f35fc..1d3a63f 100644 --- a/cloud-server-course/src/main/java/com/dsh/course/mapper/TCoursePackagePaymentMapper.java +++ b/cloud-server-course/src/main/java/com/dsh/course/mapper/TCoursePackagePaymentMapper.java @@ -2,9 +2,12 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.dsh.course.entity.PacQueryDto; import com.dsh.course.entity.TCoursePackagePayment; +import com.dsh.course.entity.dto.StudentQeryDto; import com.dsh.course.model.QueryRegistrationRecord; import com.dsh.course.model.BillingRequest; +import io.swagger.models.auth.In; import org.apache.ibatis.annotations.Param; import java.util.Date; @@ -24,9 +27,9 @@ public interface TCoursePackagePaymentMapper extends BaseMapper<TCoursePackagePayment> { - /** * 获取课包购买人数 + * * @param coursePackageId * @return */ @@ -34,22 +37,26 @@ TCoursePackagePayment getCoursePackagePaymentByCode(@Param("code") String code); - List<BillingRequest> billingDataRequestVo(@Param("appUserId")Integer appUserId, - @Param("monthStart")String monthStart, - @Param("monthEnd")String monthEnd); + List<BillingRequest> billingDataRequestVo(@Param("appUserId") Integer appUserId, + @Param("monthStart") String monthStart, + @Param("monthEnd") String monthEnd); /** * 获取课包报名信息 + * * @param page * @return */ List<Map<String, Object>> queryRegistrationRecord(Page<Map<String, Object>> page, @Param("coursePackageId") Integer coursePackageId, @Param("userIds") List<Integer> userIds, @Param("studentIds") List<Integer> studentIds); + List<Map<String, Object>> queryRegistrationRecord1(Page<Map<String, Object>> page, @Param("coursePackageId") Integer coursePackageId, + @Param("userIds") List<Integer> userIds, @Param("studentIds") List<Integer> studentIds); /** * 获取未预约排课学员列表 + * * @param page * @param coursePackagePaymentId * @param userIds @@ -59,7 +66,25 @@ List<Map<String, Object>> queryWalkInStudentList(Page<Map<String, Object>> page, @Param("coursePackageId") Integer coursePackageId, @Param("coursePackagePaymentId") List<Long> coursePackagePaymentId, @Param("userIds") List<Integer> userIds, @Param("studentIds") List<Integer> studentIds); - void updateUseTime(@Param("id")Long id, @Param("date") Date date); + void updateUseTime(@Param("id") Long id, @Param("date") Date date); - List<Integer> getStudentIds(@Param("id")Integer payId); + List<Integer> getStudentIds(@Param("id") Long payId, @Param("classId") Integer classId, @Param("appId") Integer appId); + + boolean updateHoursById(@Param("id") Long id, @Param("i") int i); + + boolean updateHoursById1(@Param("id") Long id, @Param("i") int i); + + void updateBytime(@Param("coursePackagePayment") TCoursePackagePayment coursePackagePayment); + + List<Map<String, Object>> getStudentTotal(@Param("appUserIds") List<Integer> appUserIds, @Param("start") String start, + @Param("end") String end); + + List<Map<String, Object>> pacQueryDto(@Param("start") String start, @Param("end") String end, + @Param("storeIds") List<Integer> storeIds, @Param("name") String name); + + List<TCoursePackagePayment> listOne(@Param("ids") List<Integer> ids); + + Integer queryStore(String code); + + List<Map<String, Object>> queryRegistrationRecord3(Integer coursePackageId, List<Integer> userIds, List<Integer> studentIds); } -- Gitblit v1.7.1