| 1234567891011121314151617 |
- package io.renren.dao;
-
- import org.apache.ibatis.annotations.Mapper;
-
- import io.renren.common.dao.BaseDao;
- import io.renren.entity.ScopeCityEntity;
-
- /**
- * 落地城市主表
- *
- * @author Mark sunlightcs@gmail.com
- * @since 1.0.0 2022-05-28
- */
- @Mapper
- public interface ScopeCityDao extends BaseDao<ScopeCityEntity> {
-
- }
|