ApiFreightMapper.java 479 B

12345678910111213141516171819
  1. package com.kmall.api.dao;
  2. import com.kmall.api.entity.FreightEntity;
  3. import com.kmall.manager.dao.BaseDao;
  4. import org.apache.ibatis.annotations.Param;
  5. import org.springframework.stereotype.Component;
  6. /**
  7. * Dao
  8. *
  9. * @author huangyq
  10. * @email admin@qhdswl.com
  11. * @date 2018-10-22 17:20:31
  12. */
  13. @Component
  14. public interface ApiFreightMapper extends BaseDao<FreightEntity> {
  15. FreightEntity queryObjectByGoodsId(@Param("goodsId") Long goodsId,@Param("storeId")Long storeId);
  16. }