package com.om.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.om.mapper.DepartmentMapper; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.om.entity.po.Department; import com.om.service.IDepartmentService; @Service @Transactional public class DepartmentServiceImpl extends ServiceImpl implements IDepartmentService { }