You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
503 B
21 lines
503 B
package com.Chlin.blog.service.impl;
|
|
|
|
import com.Chlin.blog.entity.Department;
|
|
import com.Chlin.blog.mapper.DepartmentMapper;
|
|
import com.Chlin.blog.service.DepartmentService;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* <p>
|
|
* 服务实现类
|
|
* </p>
|
|
*
|
|
* @author Chlin
|
|
* @since 2023-08-29
|
|
*/
|
|
@Service
|
|
public class DepartmentServiceImpl extends ServiceImpl<DepartmentMapper, Department> implements DepartmentService {
|
|
|
|
}
|