增加系统管理代码框架
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.rj.service.sys.impl;
|
||||
|
||||
import com.rj.entity.sys.UserRole;
|
||||
import com.rj.mapper.sys.UserRoleMapper;
|
||||
import com.rj.service.sys.IUserRoleService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 用户角色关联表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author 系统生成
|
||||
* @since 2025-08-07
|
||||
*/
|
||||
@Service
|
||||
public class UserRoleServiceImpl extends ServiceImpl<UserRoleMapper, UserRole> implements IUserRoleService {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user