dashboard
repositories
filestore
activity
search
login
main
/
xinbi-new
本地新币代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改充值地址
zj
2025-05-28
bcd36411feb0351347289476eb7ee9e5dd1c3b9d
[xinbi-new.git]
/
src
/
main
/
java
/
project
/
user
/
idcode
/
IdentifyingCodeService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package project.user.idcode;
/**
* 验证码发送接口
*
*
*/
public interface IdentifyingCodeService {
/**
*
* @param target 邮件或手机号
* @param ip 会根据发送频率封ip
*/
public void send(String target, String ip);
}