| 123456789101112131415161718192021222324252627282930 |
- package com.template.services.impl;
- import com.template.model.pojo.SmartLateTime;
- import com.template.mapper.SmartLateTimeMapper;
- import com.template.services.SmartLateTimeService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.List;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author ceshi
- * @since 2025-02-18
- */
- @Service
- public class SmartLateTimeServiceImpl extends ServiceImpl<SmartLateTimeMapper, SmartLateTime> implements SmartLateTimeService {
- @Autowired
- SmartLateTimeMapper smartLateTimeMapper;
- @Override
- public List<SmartLateTime> getGroup(String smartLateTimeGroup) {
- return smartLateTimeMapper.getGroup(smartLateTimeGroup);
- }
- }
|