1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.stylefeng.guns.sys.modular.system.service;
|
| import cn.stylefeng.guns.sys.modular.system.entity.Relation;
| import cn.stylefeng.guns.sys.modular.system.mapper.RelationMapper;
| import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
| import org.springframework.stereotype.Service;
|
| /**
| * <p>
| * 角色和菜单关联表 服务实现类
| * </p>
| *
| * @author stylefeng
| * @since 2018-12-07
| */
| @Service
| public class RelationService extends ServiceImpl<RelationMapper, Relation> {
|
| }
|
|