parent
0851f793a0
commit
09976bbab9
@ -0,0 +1,40 @@
|
|||||||
|
package au.com.royalpay.payment.manage.application.core.impls;
|
||||||
|
|
||||||
|
import au.com.royalpay.payment.manage.application.core.SimpleClientApplyService;
|
||||||
|
import au.com.royalpay.payment.manage.merchants.beans.NewAccountBean;
|
||||||
|
import au.com.royalpay.payment.tools.utils.sms.SmsSingleSender;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
|
||||||
|
public class SimpleClientApplyServiceImpl implements SimpleClientApplyService {
|
||||||
|
|
||||||
|
@Value("${royalpay.sms.appid}")
|
||||||
|
private int appId;
|
||||||
|
@Value("${royalpay.sms.appkey}")
|
||||||
|
private String appKey;
|
||||||
|
|
||||||
|
private final SmsSingleSender smsSingleSender = new SmsSingleSender(appId,appKey);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
String getSMSVerifyCode(String codeKey,String phoneNumber,String nationCode){
|
||||||
|
// smsSingleSender.sendWithParam();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public JSONObject newAccount(NewAccountBean accountBean) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void deleteSMSVerifyCodeKey(String codeKey) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String partnerSignIn(JSONObject account) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue