增加系统管理代码框架

This commit is contained in:
spllzh
2025-08-11 13:29:27 +08:00
parent c0a4f522ef
commit 2ab6f0c7d8
37 changed files with 3834 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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 {
}