Blame view

SmsVerifyCodeMapper.java 462 Bytes
涂亚平 committed
1 2 3
package com.subsidy.mapper;

import com.subsidy.model.SmsVerifyCodeDO;
涂亚平 committed
4
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
涂亚平 committed
5 6 7 8 9 10 11
import org.springframework.stereotype.Repository;

/**
 * <p>
 * 短信验证码记录表 Mapper 接口
 * </p>
 *
涂亚平 committed
12 13
 * @author Tuyp
 * @since 2025-01-07
涂亚平 committed
14
 */
涂亚平 committed
15
@Repository
涂亚平 committed
16 17
public interface SmsVerifyCodeMapper extends BaseMapper<SmsVerifyCodeDO> {

涂亚平 committed
18 19 20
    SmsVerifyCodeDO getOneByTelePhone(String telephone, String type, String platform);


涂亚平 committed
21
}