| 12345678910111213 |
- package com.ydtech.modules.admin.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.ydtech.modules.admin.dao.SysUserTreeShowLevelMapper;
- import com.ydtech.modules.admin.model.po.SysUserTreeShowLevel;
- import com.ydtech.modules.admin.service.SysUserTreeShowLevelService;
- import org.springframework.stereotype.Service;
- @Service
- public class SysUserTreeShowLevelServiceImpl extends ServiceImpl<SysUserTreeShowLevelMapper, SysUserTreeShowLevel> implements SysUserTreeShowLevelService {
- }
|