123456789101112131415161718192021 |
- package com.kmall.admin.dao;
- import com.kmall.admin.entity.AddressInfoEntity;
- import com.kmall.manager.dao.BaseDao;
- import org.apache.ibatis.annotations.Param;
- /**
- * 门店和快递关联表Dao
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2021-04-06 10:14:18
- */
- public interface AddressInfoDao extends BaseDao<AddressInfoEntity> {
- AddressInfoEntity queryIds(@Param("storeId") String storeId, @Param("courieId") String courieId);
- AddressInfoEntity queryStatus(@Param("storeId") Integer storeId);
- }
|