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.

CompaniesDao.java 313B

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.CompaniesEntity;
  5. /**
  6. * 公司表
  7. *
  8. * @author Mark sunlightcs@gmail.com
  9. * @since 1.0.0 2022-05-29
  10. */
  11. @Mapper
  12. public interface CompaniesDao extends BaseDao<CompaniesEntity> {
  13. }