RoleServiceImpl.java 482 B

1234567891011121314151617181920
  1. package com.flyer.foster.service.impl;
  2. import com.flyer.foster.entity.Role;
  3. import com.flyer.foster.mapper.IRoleMapper;
  4. import com.flyer.foster.service.IRoleService;
  5. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * <p>
  9. * 角色表 服务实现类
  10. * </p>
  11. *
  12. * @author flyer
  13. * @since 2024-05-06
  14. */
  15. @Service
  16. public class RoleServiceImpl extends ServiceImpl<IRoleMapper, Role> implements IRoleService {
  17. }