Administrator
4 days ago 39107c5a27d4c8c4fa7b29c126b37f748ce2ce5c
src/main/java/cc/mrbird/febs/mall/mapper/ClothesOrderMapper.java
@@ -10,9 +10,14 @@
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);
}