GoodsSeriesMapper.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package com.dk.mdm.mapper.mst;
  2. import com.dk.mdm.model.pojo.mst.GoodsBrand;
  3. import com.dk.mdm.model.pojo.mst.GoodsSeries;
  4. import com.dk.common.mapper.BaseMapper;
  5. import com.dk.mdm.model.query.mst.GoodsBrandQuery;
  6. import com.dk.mdm.model.query.mst.GoodsSeriesQuery;
  7. import com.dk.mdm.model.query.mst.UnitQuery;
  8. import com.dk.mdm.model.response.mst.GoodsBrandResponse;
  9. import com.dk.mdm.model.response.mst.GoodsSeriesResponse;
  10. import com.dk.mdm.model.response.mst.UnitResponse;
  11. import org.springframework.stereotype.Repository;
  12. import java.util.List;
  13. /**
  14. * 商品系列 Mapper
  15. */
  16. @Repository
  17. public interface GoodsSeriesMapper extends BaseMapper<GoodsSeries>{
  18. /**
  19. * @desc : 根据条件进行查询
  20. * @author : 于继渤
  21. * @date : 2024/2/26 10:36
  22. */
  23. List<GoodsSeriesResponse> selectByCond(GoodsSeriesQuery goodsSeriesQuery);
  24. /**
  25. * @desc : 根据条件进行查询
  26. * @author : 王英杰
  27. * @date : 2024/2/26 10:36
  28. */
  29. List<GoodsSeriesResponse> listByNopage(GoodsSeriesQuery goodsSeriesQuery);
  30. /**
  31. * @desc : 根据条件进行查询(数量)
  32. * @author : 于继渤
  33. * @date : 2024/2/26 10:36
  34. */
  35. Long countByCond(GoodsSeriesQuery goodsSeriesQuery);
  36. /**
  37. * @desc : 根据名称查ID
  38. * @author : 常皓宁
  39. * @date : 2024/6/12 8:38
  40. */
  41. GoodsSeriesResponse selectByUuId(GoodsSeriesQuery goodsSeriesQuery);
  42. }