新版仿ok交易所-后端
zyy
2026-03-02 73f071f8526142f91ebf3732e61fd5dfb6c9b6eb
修改
3 files modified
7 ■■■■■ changed files
trading-order-admin/src/main/resources/email/ftl/verification_email.ftl 4 ●●●● patch | view | raw | blame | history
trading-order-service/src/main/java/com/yami/trading/service/impl/IdentifyingCodeServiceImpl.java 2 ●●● patch | view | raw | blame | history
trading-order-service/src/main/java/com/yami/trading/service/impl/UserServiceImpl.java 1 ●●●● patch | view | raw | blame | history
trading-order-admin/src/main/resources/email/ftl/verification_email.ftl
@@ -17,14 +17,14 @@
    </style>
</head>
<body>
<p>Thank you for creating a FracTionxEX account.</p>
<p>Thank you for creating a WhaleTrade account.</p>
<p>Please enter the following verification code to complete your registration:</p>
<!-- 带样式的验证码 -->
<div class="code-box">${code}</div>
<p>This code is valid for 10 minutes. Please do not share it with anyone. If this was not requested by you, please contact our customer support team immediately.</p>
<p style="text-align: right; margin-top: 30px;">— The FracTionxEX Team</p>
<p style="text-align: right; margin-top: 30px;">— The WhaleTrade Team</p>
</body>
</html>
trading-order-service/src/main/java/com/yami/trading/service/impl/IdentifyingCodeServiceImpl.java
@@ -93,7 +93,7 @@
        }
//        log.info(MessageFormat.format("target:{0},code:{1},ip:{2}", target, code, ip));
        String content = "[FracTionxEX]";
        String content = "[WhaleTrade]";
        if (target.indexOf("@") == -1) {
            send_code_text = this.sysparaService.find("send_code_text").getSvalue();
trading-order-service/src/main/java/com/yami/trading/service/impl/UserServiceImpl.java
@@ -1054,6 +1054,7 @@
        party.setSafePassword(passwordEncoder.encode("000000"));
        party.setLoginPassword(passwordEncoder.encode(password));
        party.setRoleName(Constants.SECURITY_ROLE_GUEST);
        party.setCreditScore(80);
        save(party);
        if (!StringUtils.isNullOrEmpty(parents_usercode)) {
            User party_parents = findUserByUserCode(parents_usercode);