27 lines
509 B
Java
27 lines
509 B
Java
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 {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|