yantian yue
2023-10-24 47eb81eebc9a87af5f64dd765dc1a1267317d9a8
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.rest.service;
 
import cn.stylefeng.guns.sys.modular.rest.entity.RestRelation;
import cn.stylefeng.guns.sys.modular.rest.mapper.RestRelationMapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 角色和菜单关联表 服务实现类
 * </p>
 *
 * @author stylefeng
 * @since 2018-12-07
 */
@Service
public class RestRelationService extends ServiceImpl<RestRelationMapper, RestRelation> {
 
}