| | |
| | | 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); |
| | |
| | | IPage<MallGoodsCommentVo> findMallGoodsCommentByGoodsId(ApiMallGoodsCommentDto queryDto); |
| | | |
| | | ApiMallGoodsDeliveryVo findDeliverySetting(); |
| | | |
| | | MallGoodsCommentVo findMallGoodsCommentLevelByGoodsId(Long id); |
| | | |
| | | List<MallGoodsListVo> findMallGoodsListNoPage(MallGoodsQueryDto queryDto); |
| | | } |