wzy
2020-11-01 cbf7a2cc9807f1647a92d9ffc3f51791f8ac9ca0
src/main/java/com/xcong/excoin/utils/mail/Sms106Send.java
@@ -39,13 +39,15 @@
    public static boolean sendRechargeMsg(String phone, String time, String orderNo) {
        String msg = "尊敬的用户,您的帐号于{}有一笔成功充值订单,订单编号{}";
        String content = StrUtil.format(msg, time, orderNo);
        return request(phone, content, "充值");
        return true;
        //return request(phone, content, "充值");
    }
    public static boolean sendWithdrawalMsg(String phone, String time, String orderNo) {
        String msg = "尊敬的用户,您的帐号于{}有一笔成功提现订单,订单编号为{}";
        String content = StrUtil.format(msg, time, orderNo);
        return request(phone, content, "提现");
        return true;
        //return request(phone, content, "提现");
    }
    private static boolean request(String phone, String content, String tagName) {