对比新文件 |
| | |
| | | package org.jeecg.modules.dnc.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.jeecg.modules.dnc.entity.DncPassLog; |
| | | import org.jeecg.modules.dnc.mapper.DncPassLogMapper; |
| | | import org.jeecg.modules.dnc.service.IDncPassLogService; |
| | | import org.jeecg.modules.dnc.utils.ValidateUtil; |
| | | import org.springframework.stereotype.Service; |
| | | /** |
| | | * @author clown |
| | | * * @date 2023/11/29 |
| | | */ |
| | | @Service |
| | | public class DncPassLogServiceImpl extends ServiceImpl<DncPassLogMapper, DncPassLog> implements IDncPassLogService { |
| | | |
| | | @Override |
| | | public DncPassLog findDayTime(String dateDay) { |
| | | if (!ValidateUtil.validateString(dateDay)) { |
| | | return null; |
| | | } |
| | | return super.baseMapper.findDateTimeDay(dateDay); |
| | | } |
| | | } |