| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface ClothesOrderMapper extends BaseMapper<ClothesOrder> { |
| | | |
| | | Page<ApiClothesOrderListVo> selectPageInOrder(Page<ApiClothesOrderListVo> page, @Param("record")ApiClothesOrderListVoDto dto); |
| | | |
| | | IPage<AdminClothesOrderListVo> selectOrderListInPage(Page<AdminClothesOrderListVo> page, @Param("record")AdminClothesOrderListDto dto); |
| | | |
| | | List<Map<String, Integer>> selectOrderStatusCnt(@Param("memberId")Long memberId); |
| | | } |