|
@@ -11,6 +11,7 @@ import com.pj.bank_info_charges.BankInfoCharges;
|
|
|
import com.pj.bank_info_charges.BankInfoChargesService;
|
|
|
import com.pj.common.core.utils.StringUtils;
|
|
|
import com.pj.enummj.FinishStatus;
|
|
|
+import com.pj.utils.CryptoUtil;
|
|
|
import com.pj.utils.ht.AESUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
@@ -77,7 +78,7 @@ public class BankByteTask {
|
|
|
byteList.forEach(item -> {
|
|
|
String body = item.getBody();
|
|
|
//数据解析
|
|
|
- String xmlStr = body;//AESUtil.decryptCBC(body, RabbitMQOne.ACC_KEY);
|
|
|
+ String xmlStr = CryptoUtil.decrypt(body);
|
|
|
|
|
|
BankInfo bankInfo = new BankInfo();
|
|
|
List<BankInfoCharges> chargesList = new ArrayList<>();
|