| 1234567891011121314151617 |
- package io.renren.dao;
-
- import org.apache.ibatis.annotations.Mapper;
-
- import io.renren.common.dao.BaseDao;
- import io.renren.entity.CompaniesEntity;
-
- /**
- * 公司表
- *
- * @author Mark sunlightcs@gmail.com
- * @since 1.0.0 2022-05-29
- */
- @Mapper
- public interface CompaniesDao extends BaseDao<CompaniesEntity> {
-
- }
|