You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
717 B
Java
23 lines
717 B
Java
10 months ago
|
package com.supervision.police.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.supervision.police.domain.SystemUserRoleRelation;
|
||
|
import com.supervision.police.service.SystemUserRoleRelationService;
|
||
|
import com.supervision.police.mapper.SystemUserRoleRelationMapper;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* @author Administrator
|
||
|
* @description 针对表【system_user_role_relation(用户角色关联表)】的数据库操作Service实现
|
||
|
* @createDate 2024-07-31 11:02:43
|
||
|
*/
|
||
|
@Service
|
||
|
public class SystemUserRoleRelationServiceImpl extends ServiceImpl<SystemUserRoleRelationMapper, SystemUserRoleRelation>
|
||
|
implements SystemUserRoleRelationService{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|