80 lines
522 B
Java
80 lines
522 B
Java
package com.rj.service.sys.impl;
|
|
|
|
import com.rj.entity.sys.Role;
|
|
import com.rj.mapper.sys.RoleMapper;
|
|
import com.rj.service.sys.IRoleService;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* <p>
|
|
* 角色表 服务实现类
|
|
* </p>
|
|
*
|
|
* @author 系统生成
|
|
* @since 2025-08-07
|
|
*/
|
|
@Service
|
|
public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements IRoleService {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|