package com.gk.firework.Mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gk.firework.Domain.SmsLogInfo;
|
import org.springframework.stereotype.Repository;
|
|
@Repository
|
public interface SmsLogInfoMapper extends BaseMapper<SmsLogInfo> {
|
int deleteByPrimaryKey(Long id);
|
|
SmsLogInfo selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(SmsLogInfo record);
|
|
int updateByPrimaryKey(SmsLogInfo record);
|
|
SmsLogInfo selectByTel(String mobile, String starttime, String endtime, Byte type);
|
|
void deleteByTime(String seventime);
|
}
|