IChannelGoodsOrderItemService.java 760 B

123456789101112131415161718192021222324
  1. package com.qs.mp.channel.service;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.qs.mp.channel.domain.ChannelGoodsOrderItem;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import com.qs.mp.channel.domain.vo.ChannelGoodsOrderItemVO;
  6. import java.util.List;
  7. /**
  8. * @auther quanshu
  9. * @create 2023-06-05 11:01:39
  10. * @describe 经销商商品采购订单明细服务类
  11. */
  12. public interface IChannelGoodsOrderItemService extends IService<ChannelGoodsOrderItem> {
  13. /**
  14. * 门店采购商品明细查询
  15. *
  16. * @param goodsOrderItemQueryWrapper
  17. * @return
  18. */
  19. List<ChannelGoodsOrderItemVO> selectChannelGoodsOrderItemVOList(QueryWrapper<ChannelGoodsOrderItem> goodsOrderItemQueryWrapper);
  20. }