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