package com.gk.firework.Service; import com.baomidou.mybatisplus.extension.service.IService; import com.gk.firework.Domain.SmsLogInfo; public interface SmsLogService extends IService { SmsLogInfo selectByTel(String mobile, String starttime, String endtime, Byte type); void deleteByTime(String seventime); }