中扬CRM客户关系管理系统
LSH
2023-11-22 92b286e238439c61b230a07f42b92c2328588d49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.crm.manager.service;
 
import com.zy.crm.common.entity.PhoneCodeTypeParam;
import com.zy.crm.manager.entity.SmsCode;
import com.baomidou.mybatisplus.service.IService;
 
public interface SmsCodeService extends IService<SmsCode> {
 
    SmsCode selectByPhone(String phone);
 
    boolean sendSmsCode(String phone);
//    boolean sendSmsCodeText(String phone);
    boolean sendSmsCodeText(String phone, PhoneCodeTypeParam param);
 
    boolean verifySmsCode(String phone, String code);
 
}