KKSU
2023-11-30 4c7c790d34fcadf0d634cbdfc274bfff3891eedc
src/main/java/cc/mrbird/febs/mall/mapper/MallProductSellMapper.java
@@ -1,7 +1,16 @@
package cc.mrbird.febs.mall.mapper;
import cc.mrbird.febs.mall.dto.ApiOrderListDto;
import cc.mrbird.febs.mall.entity.MallProductSell;
import cc.mrbird.febs.mall.vo.ApiOrderListVo;
import cc.mrbird.febs.mall.vo.ApiOrderSellInfoVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
public interface MallProductSellMapper extends BaseMapper<MallProductSell> {
    IPage<ApiOrderListVo> selectListInPage(IPage<ApiOrderListVo> page, @Param("record")ApiOrderListDto apiOrderListDto);
    ApiOrderSellInfoVo selectSellInfoById(@Param("id")Long productSellId);
}