UserDao.java 448 B

1234567891011121314151617181920212223
  1. /**
  2. * Copyright (c) 2016-2019 人人开源 All rights reserved.
  3. *
  4. * https://www.renren.io
  5. *
  6. * 版权所有,侵权必究!
  7. */
  8. package io.renren.modules.app.dao;
  9. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  10. import io.renren.modules.app.entity.UserEntity;
  11. import org.apache.ibatis.annotations.Mapper;
  12. /**
  13. * 用户
  14. *
  15. * @author Mark sunlightcs@gmail.com
  16. */
  17. @Mapper
  18. public interface UserDao extends BaseMapper<UserEntity> {
  19. }