You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ScopeCityDao.java 322B

1234567891011121314151617
  1. package io.renren.dao;
  2. import org.apache.ibatis.annotations.Mapper;
  3. import io.renren.common.dao.BaseDao;
  4. import io.renren.entity.ScopeCityEntity;
  5. /**
  6. * 落地城市主表
  7. *
  8. * @author Mark sunlightcs@gmail.com
  9. * @since 1.0.0 2022-05-28
  10. */
  11. @Mapper
  12. public interface ScopeCityDao extends BaseDao<ScopeCityEntity> {
  13. }