SmartLateTimeServiceImpl.java 824 B

123456789101112131415161718192021222324252627282930
  1. package com.template.services.impl;
  2. import com.template.model.pojo.SmartLateTime;
  3. import com.template.mapper.SmartLateTimeMapper;
  4. import com.template.services.SmartLateTimeService;
  5. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8. import java.util.List;
  9. /**
  10. * <p>
  11. * 服务实现类
  12. * </p>
  13. *
  14. * @author ceshi
  15. * @since 2025-02-18
  16. */
  17. @Service
  18. public class SmartLateTimeServiceImpl extends ServiceImpl<SmartLateTimeMapper, SmartLateTime> implements SmartLateTimeService {
  19. @Autowired
  20. SmartLateTimeMapper smartLateTimeMapper;
  21. @Override
  22. public List<SmartLateTime> getGroup(String smartLateTimeGroup) {
  23. return smartLateTimeMapper.getGroup(smartLateTimeGroup);
  24. }
  25. }