| | |
| | | package cc.mrbird.febs.mall.mapper; |
| | | |
| | | import cc.mrbird.febs.common.enumerates.OrderPayMethodEnum; |
| | | import cc.mrbird.febs.mall.dto.MallOrderInfoDto; |
| | | import cc.mrbird.febs.mall.dto.OrderListDto; |
| | | import cc.mrbird.febs.mall.entity.MallOrderInfo; |
| | |
| | | |
| | | BigDecimal selectTotalAmountForDate(@Param("date") Date date, @Param("member") Long memberId); |
| | | |
| | | BigDecimal selectTotalAmountUnCostForDate(@Param("date") Date date, @Param("member") Long memberId, @Param("type") String type); |
| | | BigDecimal selectTotalAmountUnCostForDate(@Param("date") Date date, @Param("member") Long memberId, @Param("dateType") String dateType, @Param("isNormal") Integer isNormal); |
| | | |
| | | MallOrderInfo selectByOrderNo(@Param("orderNo") String orderNo); |
| | | |
| | | int updateOrderConfirmStatus(@Param("date") Date date); |
| | | |
| | | List<MallOrderInfo> selectOrderInfoWithNormalGoods(@Param("date") Date date); |
| | | |
| | | BigDecimal selectSumAmountByPayMethodAndStatue(@Param("payMethod")String name, @Param("statue")int value); |
| | | |
| | | BigDecimal selectTotalAmountByPayDoneAndDataString(@Param("payResult")int i, @Param("date") Date date); |
| | | |
| | | BigDecimal selectSumAmountByPayMethodAndSomeStatue(@Param("payMethod")String name, @Param("statues") List<Long> values); |
| | | } |