SmartDepartmentServiceImpl.java 536 B

1234567891011121314151617181920
  1. package com.template.services.impl;
  2. import com.template.model.pojo.SmartDepartment;
  3. import com.template.mapper.SmartDepartmentMapper;
  4. import com.template.services.SmartDepartmentService;
  5. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * <p>
  9. * 服务实现类
  10. * </p>
  11. *
  12. * @author ceshi
  13. * @since 2023-12-04
  14. */
  15. @Service
  16. public class SmartDepartmentServiceImpl extends ServiceImpl<SmartDepartmentMapper, SmartDepartment> implements SmartDepartmentService {
  17. }