package com.qianwen.smartman.modules.system.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.qianwen.smartman.modules.system.entity.DeptScope;
|
import com.qianwen.smartman.modules.system.mapper.DeptScopeMapper;
|
import com.qianwen.smartman.modules.system.service.IDeptScopeService;
|
import org.springframework.stereotype.Service;
|
|
@Service
|
public class DeptScopeServiceImpl extends ServiceImpl<DeptScopeMapper, DeptScope> implements IDeptScopeService {
|
}
|