增加系统管理代码框架

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,16 @@
package com.rj.mapper.sys;
import com.rj.entity.sys.UserRole;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 用户角色关联表 Mapper 接口
* </p>
*
* @author 系统生成
* @since 2025-08-07
*/
public interface UserRoleMapper extends BaseMapper<UserRole> {
}