123456789101112131415161718 |
- package com.kmall.admin.dao;
- import com.kmall.admin.entity.AddressEntity;
- import com.kmall.manager.dao.BaseDao;
- import org.apache.ibatis.annotations.Param;
- /**
- * Dao
- *
- * @author Scott
- * @email
- * @date 2017-08-16 17:22:46
- */
- public interface AddressDao extends BaseDao<AddressEntity> {
- AddressEntity queryStoreAddress(@Param("id") Long id,@Param("type") String type);
- }
|