package com.hai.service; import com.hai.entity.HighChildOrder; import com.hai.entity.HighOrder; import com.hai.model.*; import org.apache.ibatis.annotations.Param; import java.math.BigDecimal; import java.util.List; import java.util.Map; /** * @Auther: 胡锐 * @Description: * @Date: 2021/3/26 23:04 */ public interface HighOrderService { /** * @Author 胡锐 * @Description 增加订单 * @Date 2021/3/26 23:05 **/ void insertOrder(HighOrder highOrder) throws Exception; /** * 修子订单信息 * @param highChildOrder */ void updateChildOrder(HighChildOrder highChildOrder); /** * @Author 胡锐 * @Description 金币支付订单 * @Date 2021/3/27 11:20 **/ void goldPayOrder(Long userId, Long orderId) throws Exception; /** * 油卡支付订单 * @param userCardId 用户与卡号关系 * @param orderId 订单id * @throws Exception */ void oilCardPayOrder(Long userCardId, Long orderId) throws Exception; /** * 汇联通工会卡支付 * @param userCardId * @param orderId * @throws Exception */ void hltUnionCardPay(Long userCardId, Long orderId) throws Exception; /** * @Author 胡锐 * @Description 修改订单 * @Date 2021/3/26 23:06 **/ void updateOrder(HighOrder highOrder); /** * 修改订单详情 * @param highOrder */ void updateOrderDetail(HighOrder highOrder); /** * @Author 胡锐 * @Description 获取未完成的子订单数量 * @Date 2021/3/27 13:35 **/ Integer getUndoneChildOrder(Long orderId); /** * @Author 胡锐 * @Description 查询子商品 * @Date 2021/4/5 13:23 **/ HighChildOrder getChildOrderById(Long childOrderId); /** * @Author 胡锐 * @Description 根据用户和商品id 查询 * @Date 2021/4/15 21:38 **/ HighChildOrder getChildOrderByUserGoods(Long userId,Integer goodsType,Long goodsId); /** * 根据订单id 查询子商品 * @param orderId * @return */ List getChildOrderByOrder(Long orderId); /** * @Author Sum1Dream * @name getChildOrderByPresentation.java * @Description // 根据是否赠品查询子订单 * @Date 16:20 2021/9/7 * @Param [orderId, isGiveAway] * @return com.hai.entity.HighChildOrder **/ HighChildOrder getChildOrderByPresentation(Long orderId); /** * @Author 胡锐 * @Description 查询子商品列表 * @Date 2021/4/2 21:51 **/ List getChildOrderList(Map map); /** * @Author 胡锐 * @Description 根据id查询 * @Date 2021/3/26 23:06 **/ HighOrder getOrderById(Long id); /** * @Author 胡锐 * @Description 根据订单号查询 * @Date 2021/3/27 0:38 **/ HighOrder getOrderByOrderNo(String orderNo); /** * @Author 袁野 * @Description 查询订单列表 * @Date 2021/3/26 23:06 **/ List getOrderBList(Map map); /** * @Author 胡锐 * @Description 查询订单列表 * @Date 2021/3/26 23:06 **/ List getOrderList(Map map); /** * 查询订单列表 * @param map * @return */ List getGoodsOrderModelList(Map map) throws Exception; /** * 查询加油订单 * @param map * @return * @throws Exception */ List getGasOrderModelList(Map map) throws Exception; /** * 查询肯德基订单 * @param map * @return * @throws Exception */ List getKfcOrderModelList(Map map) throws Exception; /** * 查询电影订单 * @param map * @return * @throws Exception */ List getCinemaOrderList(Map map) throws Exception; /** * 查询话费充值订单 * @param map * @return * @throws Exception */ List getMobileOrderList(Map map) throws Exception; /** * 根据标识码 查询订单 * @param identificationCode * @return * @throws Exception */ List getOrderListByIdCode(String identificationCode, Map map) throws Exception; /** * @Author 胡锐 * @Description 查询需要关闭的订单列表 * @Date 2021/3/27 15:43 **/ List getCloseOrder(); /** * 根据优惠券代理商id 查询已消费的订单 * @param discountCodeId * @return */ HighOrder getConsumeOrderByDiscountCode(Long discountCodeId); /** * @Author 胡锐 * @Description 子订单完成 * @Date 2021/3/27 13:28 **/ void childOrderComplete(Long childOrderId); /** * @Author 胡锐 * @Description 取消订单 * @Date 2021/3/27 15:50 **/ void cancelOrder(Long orderId); /** * @Author 袁野 * @Description 根据用户查询订单统计 * @Date 2021/3/27 15:50 **/ Integer countOrderByUserId(Long memId , Integer status); /** * @Author 袁野 * @Description 未使用优惠券数量 * @Date 2021/3/27 15:50 **/ Integer countUnusedDiscountByUserId(Long userId , Integer status); /** * 查询处于已经支付和待支付的话费订单 * @return */ List getAlreadyPaidMobileOrder(); /** * 查询处于已经支付和待支付的KFC订单 * @return */ List getAlreadyPaidKfcOrder(); /** * 查询处于已经支付和待支付的话费订单 * @return */ List getAlreadyPaidCinemaOrder(); List getTest(); /** * 查询团油超过支付时间24小时订单 * @return */ List> getFinishGasOrder(); /** * 查询订单列表 * @param map * @return */ List selectDiscountPackageOrderList(Map map) throws Exception; /** * @Author Sum1Dream * @name orderByIndex.java * @Description // 查询卡券统计 * @Date 3:57 下午 2022/1/10 * @Param [java.lang.Integer] * @return com.hai.model.OrderCountModel */ OrderCountModel orderByIndex(Integer code); /** * @Author Sum1Dream * @name orderByIndex.java * @Description // 查询汇联通统计 * @Date 3:57 下午 2022/1/10 * @Param [java.lang.Integer] * @return com.hai.model.OrderCountModel */ OrderCountModel HLTOrderByIndex(Integer code); /** * @Author Sum1Dream * @name HLTOrderByList.java * @Description // 工会卡预支付查询列表 * @Date 5:28 下午 2022/1/10 * @Param [Integer] * @return java.util.List */ List HLTOrderByList(Integer code) throws Exception; /** * @Author Sum1Dream * @name orderPriceTotal.java * @Description // 获取支付订单总金额 * @Date 2:09 下午 2022/1/12 * @Param [] * @return java.math.BigDecimal */ BigDecimal orderPriceTotal(Map map); /** * @Author Sum1Dream * @name rechargePriceTotal.java * @Description // 获取话费订单总金额 * @Date 2:09 下午 2022/1/12 * @Param [] * @return java.math.BigDecimal */ BigDecimal rechargePriceTotal(Map map); /** * @Author Sum1Dream * @name orderPriceCount.java * @Description // 获取支付订单数量 * @Date 2:09 下午 2022/1/12 * @Param [] * @return java.lang.Long */ Long orderPriceCount(Map map); /** * @Author Sum1Dream * @name rechargePriceCount.java * @Description // 获取话费订单数量 * @Date 2:10 下午 2022/1/12 * @Param [] * @return java.lang.Long */ Long rechargePriceCount(Map map); /** * @Author Sum1Dream * @name getOrderSumOrderByDate.java * @Description // 查询订单最近七天订单金额 * @Date 11:48 上午 2022/1/13 * @Param [] * @return java.util.List */ List getOrderSumOrderByDate(); /** * @Author Sum1Dream * @name getOrderSumRechargeByDate.java * @Description // 查询话费订单最近七天订单金额 * @Date 11:49 上午 2022/1/13 * @Param [] * @return java.util.List */ List getOrderSumRechargeByDate(); /** * @Author Sum1Dream * @name getDateCountByUser.java * @Description // 查询最近七天注册用户数量 * @Date 11:49 上午 2022/1/13 * @Param [] * @return java.util.List */ List getDateCountByUser(); /** * @Author Sum1Dream * @name getDateCountByOrder.java * @Description // 查询最近七天订单数量 * @Date 11:50 上午 2022/1/13 * @Param [] * @return java.util.List */ List getDateCountByOrder(); /** * @Author Sum1Dream * @name getDateCountByRecharge.java * @Description //查询最近七天话费订单数量 * @Date 11:51 上午 2022/1/13 * @Param [] * @return java.util.List */ List getDateCountByRecharge(); /** * 查询用户当天加油订单数据量 * @param userId * @return */ int getGasTheDayOrderNum(Long userId); /** * @Author Sum1Dream * @name TyOrderStatistics.java * @Description // 团游订单统计 * @Date 15:01 2022/3/31 * @Param [java.util.Map] * @return com.hai.model.TyOrderCountModel */ TyOrderCountModel TyOrderStatistics(Map map) throws Exception; /** * 查询加油站当天统计 * @param storeId * @param status * @return */ Map getGasTheDayOrderCount(Long storeId, String status); /** * 查询加油站历史统计 * @param storeId * @param status * @return */ Map getGasHistoryOrderCount(Long storeId, String status); /** * 查询加油站订单列表 * @param param * @return */ List getGasOrderList(Map param) throws Exception; /** * 查询加油站订单列表 * @param orderNo * @return */ GasOrderModel getGasOrderDetail(String orderNo); }