From 0ca7bf5c850eaef852a6b49d4b94e8366deedb29 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 26 May 2021 15:03:51 +0800
Subject: [PATCH] 20210525  申诉

---
 src/main/java/com/xcong/excoin/utils/mail/ZzSmsSend.java |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/utils/mail/ZzSmsSend.java b/src/main/java/com/xcong/excoin/utils/mail/ZzSmsSend.java
index 632d0d0..06508de 100644
--- a/src/main/java/com/xcong/excoin/utils/mail/ZzSmsSend.java
+++ b/src/main/java/com/xcong/excoin/utils/mail/ZzSmsSend.java
@@ -27,22 +27,23 @@
     private static final String PWD = "1369815429";
 
     public static boolean sendVerifyCode(String telphone, String code, int time) {
-        String content = "【HiBit】您的验证码是{},请在{}分钟内输入,请勿泄露给他人,如非本人操作,请及时修改密码。";
+        String content = "【云顶】您的验证码是{},请在{}分钟内输入,请勿泄露给他人,如非本人操作,请及时修改密码。";
         return send(telphone, StrUtil.format(content, code, time));
     }
 
     public static boolean sendRechargeMsg(String telphone, Date time, String amount, String orderNo) {
-        String content = "【HiBit】尊敬的用户,恭喜您于{}有一笔充值已成功到账,充值数量为{}, 订单号为{}。";
-        return send(telphone, StrUtil.format(content, DateUtil.format(time, DatePattern.NORM_DATETIME_MINUTE_PATTERN), amount));
+        String content = "【云顶】尊敬的用户,恭喜您于{}有一笔充值已成功到账,充值数量为{}, 订单号为{}。";
+        return send(telphone, StrUtil.format(content, DateUtil.format(time, DatePattern.NORM_DATETIME_MINUTE_PATTERN), amount, orderNo));
     }
 
     public static boolean sendWithdrawMsg(String telphone, Date time, String amount) {
-        String content = "【HiBit】尊敬的用户,恭喜您于{}提现成功,数量为{}。";
+        String content = "【云顶】尊敬的用户,恭喜您于{}提现成功,数量为{}。";
         return send(telphone, StrUtil.format(content, DateUtil.format(time, DatePattern.NORM_DATETIME_MINUTE_PATTERN), amount));
     }
 
+    // 【云顶】您的订单XXX已完成,买家已付款,请查收并及时处理。
     public static boolean sendForceCloseMsg(String telphone) {
-        String content = "【HiBit】尊敬的用户,因市场剧烈波动,您的合约账户已被强制平仓。";
+        String content = "【云顶】尊敬的用户,因市场剧烈波动,您的合约账户已被强制平仓。";
         return send(telphone, content);
     }
 

--
Gitblit v1.9.1