|
@@ -239,7 +239,7 @@ public class WalletServiceImpl implements IWalletService {
|
|
|
sendData.put("timestamp" , System.currentTimeMillis());
|
|
|
sendData.put("callback_url" , callbackUrl);
|
|
|
// 截取备注长度
|
|
|
- sendData.put("orderName" , orderRemark);
|
|
|
+ sendData.put("orderName" , StringUtils.isNotBlank(orderRemark) && orderRemark.length() > 10 ? orderRemark.substring(0, 10) : orderRemark);
|
|
|
sendData.put("sign" , sign);
|
|
|
sendData.put("client_ip" , "113.31.163.91");
|
|
|
|