SysPostMapper.java 505 B

1234567891011121314151617181920212223
  1. /*
  2. * 爱组搭 http://aizuda.com 低代码组件化开发平台
  3. * ------------------------------------------
  4. * 受知识产权保护,请勿删除版权申明
  5. */
  6. package com.aizuda.boot.system.mapper;
  7. import com.aizuda.service.mapper.CrudMapper;
  8. import com.aizuda.boot.system.entity.SysPost;
  9. import org.apache.ibatis.annotations.Mapper;
  10. /**
  11. * <p>
  12. * 岗位 Mapper 接口
  13. * </p>
  14. *
  15. * @author 青苗
  16. * @since 2022-02-18
  17. */
  18. @Mapper
  19. public interface SysPostMapper extends CrudMapper<SysPost> {
  20. }