增加系统管理代码框架

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.service.sys;
import com.rj.entity.sys.UserRole;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 用户角色关联表 服务类
* </p>
*
* @author 系统生成
* @since 2025-08-07
*/
public interface IUserRoleService extends IService<UserRole> {
}