AddressInfoDao.java 524 B

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