1234567891011121314151617 |
- package com.lantone.dblayermbg.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.lantone.dblayermbg.entity.Role;
- import com.lantone.dblayermbg.mapper.RoleMapper;
- import com.lantone.dblayermbg.service.RoleService;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 角色表 Service实现类
- * </p>
- */
- @Service
- public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements RoleService {
- }
|