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; /** *

* 服务实现类 *

* * @author ceshi * @since 2025-02-18 */ @Service public class SmartLateTimeServiceImpl extends ServiceImpl implements SmartLateTimeService { @Autowired SmartLateTimeMapper smartLateTimeMapper; @Override public List getGroup(String smartLateTimeGroup) { return smartLateTimeMapper.getGroup(smartLateTimeGroup); } }