xiaoyong931011
2023-02-09 ae99a4a7654a6a3d8fd8343c22c415930f0a18cb
src/main/java/cc/mrbird/febs/mall/service/IApiMallGoodsService.java
@@ -11,6 +11,8 @@
import com.baomidou.mybatisplus.extension.service.IService;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface IApiMallGoodsService extends IService<MallGoods> {
    IPage<MallGoodsListVo> findMallGoodsListInPage(MallGoodsQueryDto queryDto);
@@ -20,4 +22,8 @@
    IPage<MallGoodsCommentVo> findMallGoodsCommentByGoodsId(ApiMallGoodsCommentDto queryDto);
    ApiMallGoodsDeliveryVo findDeliverySetting();
    MallGoodsCommentVo findMallGoodsCommentLevelByGoodsId(Long id);
    List<MallGoodsListVo> findMallGoodsListNoPage(MallGoodsQueryDto queryDto);
}