package cc.mrbird.febs.mall.mapper; import cc.mrbird.febs.mall.dto.clothes.AdminClothesOrderListDto; import cc.mrbird.febs.mall.dto.clothes.ApiClothesOrderListVoDto; import cc.mrbird.febs.mall.entity.ClothesOrder; import cc.mrbird.febs.mall.vo.clothes.AdminClothesOrderListVo; import cc.mrbird.febs.mall.vo.clothes.ApiClothesOrderListVo; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import org.apache.ibatis.annotations.Param; public interface ClothesOrderMapper extends BaseMapper { Page selectPageInOrder(Page page, @Param("record")ApiClothesOrderListVoDto dto); IPage selectOrderListInPage(Page page, @Param("record")AdminClothesOrderListDto dto); }