对比新文件 |
| | |
| | | package com.gk.firework.Service.ServiceImpl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.gk.firework.Domain.SmsLogInfo; |
| | | import com.gk.firework.Mapper.SmsLogInfoMapper; |
| | | import com.gk.firework.Service.SmsLogService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service("SmsLogService") |
| | | public class SmsLogServiceImpl extends ServiceImpl<SmsLogInfoMapper, SmsLogInfo> implements SmsLogService { |
| | | @Autowired |
| | | SmsLogInfoMapper smsLogInfoMapper; |
| | | |
| | | |
| | | @Override |
| | | public SmsLogInfo selectByTel(String mobile, String starttime, String endtime,Byte type) { |
| | | return smsLogInfoMapper.selectByTel(mobile,starttime,endtime,type); |
| | | } |
| | | |
| | | @Override |
| | | public void deleteByTime(String seventime) { |
| | | smsLogInfoMapper.deleteByTime(seventime); |
| | | } |
| | | } |