- package com.kmall.admin.dao;
- import com.kmall.admin.entity.ShippingEntity;
- import com.kmall.manager.dao.BaseDao;
- import org.apache.ibatis.annotations.Param;
- /**
- * Dao
- *
- * @author Scott
- * @email
- * @date 2017-09-04 21:42:24
- */
- public interface ShippingDao extends BaseDao<ShippingEntity> {
- ShippingEntity queryObjectByCode(@Param("code")String code);
- }
|