| 1234567891011121314151617181920 |
- package com.template.services.impl;
- import com.template.model.pojo.SmartDepartment;
- import com.template.mapper.SmartDepartmentMapper;
- import com.template.services.SmartDepartmentService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author ceshi
- * @since 2023-12-04
- */
- @Service
- public class SmartDepartmentServiceImpl extends ServiceImpl<SmartDepartmentMapper, SmartDepartment> implements SmartDepartmentService {
- }
|