com.libfintech.verification.repository.ISmsRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of verification Show documentation
Show all versions of verification Show documentation
sms verification and notification
package com.libfintech.verification.repository;
import com.libfintech.verification.model.SmsModel;
/**
* 短信仓储
* Created by liamjung on 2018/1/19.
*/
public interface ISmsRepository {
/**
* 新增
*
* @param model
*/
void save(SmsModel model);
/**
* 修改
*
* @param model
*/
void update(SmsModel model);
/**
* 获取
*
* @param phoneNo 手机号码
* @param flag 业务标志
* @return
*/
SmsModel get(String phoneNo, String flag);
/**
* 删除
*
* @param phoneNo 手机号码
* @param flag 业务标志
*/
void delete(String phoneNo, String flag);
}