| | |
| | | package com.xzx.gc.shop.mapper; |
| | | |
| | | import com.xzx.gc.entity.ScoreOrder; |
| | | import com.xzx.gc.shop.dto.QueryOrderListDto; |
| | | import com.xzx.gc.shop.dto.XcxOrderListDto; |
| | | import com.xzx.gc.shop.vo.QueryOrderListVo; |
| | | import com.xzx.gc.shop.vo.XcxOrderDetailsVo; |
| | |
| | | public interface ScoreOrderMapper extends GcMapper<ScoreOrder> { |
| | | |
| | | List<QueryOrderListVo> queryOrderList(@Param("name")String name, |
| | | @Param("accountName")String accountName, |
| | | @Param("orderNo")String orderNo, |
| | | @Param("status")Integer status, |
| | | @Param("status") List status, |
| | | @Param("createdTimeStart")Date createdTimeStart, |
| | | @Param("createdTimeEnd")Date createdTimeEnd); |
| | | @Param("createdTimeEnd")Date createdTimeEnd, |
| | | @Param("namePx")Integer namePx, |
| | | @Param("typePx")Integer typePx); |
| | | |
| | | List<XcxOrderListVo> selectXcxOrderList(@Param("record") XcxOrderListDto xcxOrderListDto); |
| | | |
| | |
| | | Map<String, Object> selectOrderStastics(@Param("userId") String userId); |
| | | |
| | | Integer selectScoreOrderCnt(@Param("userId") String userId); |
| | | |
| | | } |