|
@@ -1,5 +1,6 @@
|
|
|
package com.ym.mec.biz.dal.dao;
|
|
|
|
|
|
+import com.ym.mec.biz.dal.dto.OrderStatisDto;
|
|
|
import com.ym.mec.biz.dal.dto.SporadicChargeInfoDto;
|
|
|
import com.ym.mec.biz.dal.dto.StudentPaymentOrderExportDto;
|
|
|
import com.ym.mec.biz.dal.dto.UserGoodsDto;
|
|
@@ -28,8 +29,8 @@ public interface StudentPaymentOrderDao extends BaseDAO<Long, StudentPaymentOrde
|
|
|
*/
|
|
|
List<Goods> queryApplyGoodsList(@Param("musicGroupId") String musicGroupId, @Param("type") OrderDetailTypeEnum type);
|
|
|
|
|
|
- List<StudentPaymentOrder> queryByCondition(@Param("groupType") GroupType groupType, @Param("musicGroupId") String musicGroupId,
|
|
|
- @Param("userId") Integer userId, @Param("status") DealStatusEnum status, @Param("type") OrderTypeEnum type);
|
|
|
+ List<StudentPaymentOrder> queryByCondition(@Param("groupType") GroupType groupType, @Param("musicGroupId") String musicGroupId,
|
|
|
+ @Param("userId") Integer userId, @Param("status") DealStatusEnum status, @Param("type") OrderTypeEnum type);
|
|
|
|
|
|
/**
|
|
|
* @Author: Joburgess
|
|
@@ -57,7 +58,7 @@ public interface StudentPaymentOrderDao extends BaseDAO<Long, StudentPaymentOrde
|
|
|
* 根据学生vip课获取非失败缴费订单
|
|
|
*/
|
|
|
List<StudentPaymentOrder> findNotFailedOrderByStudentVipGroup(@Param("vipGroupId") Long vipGroupId,
|
|
|
- @Param("userId") Integer userId);
|
|
|
+ @Param("userId") Integer userId);
|
|
|
|
|
|
/**
|
|
|
* @param musicGroupId: 乐团编号/vip课编号
|
|
@@ -188,15 +189,19 @@ public interface StudentPaymentOrderDao extends BaseDAO<Long, StudentPaymentOrde
|
|
|
|
|
|
/**
|
|
|
* 获取零星收费订单列表
|
|
|
+ *
|
|
|
* @param queryInfo
|
|
|
* @return
|
|
|
*/
|
|
|
- List<SporadicChargeInfoDto> sporadicQueryPage( Map<String, Object> queryInfo);
|
|
|
+ List<SporadicChargeInfoDto> sporadicQueryPage(Map<String, Object> queryInfo);
|
|
|
|
|
|
/**
|
|
|
* COUNT零星收费订单列表
|
|
|
+ *
|
|
|
* @param params
|
|
|
* @return
|
|
|
*/
|
|
|
int countSporadicPage(Map<String, Object> params);
|
|
|
+
|
|
|
+ List<OrderStatisDto> getLuckStatis();
|
|
|
}
|