12345678910111213141516171819 |
- package com.kmall.api.dao;
- import com.kmall.api.entity.FreightEntity;
- import com.kmall.manager.dao.BaseDao;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Component;
- /**
- * Dao
- *
- * @author huangyq
- * @email admin@qhdswl.com
- * @date 2018-10-22 17:20:31
- */
- @Component
- public interface ApiFreightMapper extends BaseDao<FreightEntity> {
- FreightEntity queryObjectByGoodsId(@Param("goodsId") Long goodsId,@Param("storeId")Long storeId);
- }
|