| | |
| | | import cc.mrbird.febs.mall.vo.AdminMallOrderInfoVo; |
| | | import cc.mrbird.febs.mall.vo.AdminMallOrderVo; |
| | | import cc.mrbird.febs.mall.vo.AdminOrderDetailVo; |
| | | import cn.hutool.core.date.DateTime; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | |
| | | |
| | | List<MallOrderInfo> selectOrderInfoByStatus(@Param("status") Integer status); |
| | | |
| | | List<MallOrderInfo> selectOrderInfoUpTime(@Param("status") Integer status); |
| | | |
| | | Integer selectCntDirectOrTeam(@Param("type") Integer type, @Param("inviteId") String inviteId); |
| | | |
| | | Integer selectCntDirect(@Param("inviteId") String inviteId); |
| | |
| | | |
| | | MallOrderInfo selectByOrderNo(@Param("orderNo") String orderNo); |
| | | |
| | | int updateOrderConfirmStatus(@Param("date") Date date); |
| | | int updateOrderConfirmStatus(@Param("updateTime")DateTime updateTime,@Param("date") Date date); |
| | | |
| | | List<MallOrderInfo> selectOrderInfoWithNormalGoods(@Param("date") Date date); |
| | | |
| | | BigDecimal selectSumAmountByPayMethodAndStatue(@Param("payMethod")String name, @Param("statue")int value); |
| | | |
| | | void updateOrderStateAndDeliveryState(@Param("orderId")Long orderId, @Param("orderState")int orderState, @Param("deliveryState")int deliveryState); |
| | | |
| | | List<Map<String, Integer>> selectMemberOrderStatusCntByUniquecode(@Param("uniqueCode")String uniqueCode); |
| | | |
| | | List<MallOrderInfo> selectOrderByStatusAndPayTime(@Param("status")Integer i, @Param("paytime")DateTime offsetDay); |
| | | |
| | | IPage<MallOrderInfo> selectNewApiOrderListInPage(IPage<MallOrderInfo> page, @Param("record") OrderListDto orderListDto); |
| | | } |