|
|
|
@ -63,31 +63,6 @@ public class IrSessionServiceImpl extends ServiceImpl<IrSessionMapper, IrSession
|
|
|
|
|
irSessionParam.setParamValue(newSessionReqVO.getCaseNumber());
|
|
|
|
|
irSessionParam.setParamType("String");
|
|
|
|
|
irSessionParamService.save(irSessionParam);
|
|
|
|
|
// 保存交易卡号证件号以及用户名信息
|
|
|
|
|
if (StrUtil.isNotBlank(newSessionReqVO.getTransactionNumber())) {
|
|
|
|
|
IrSessionParam transactionNumberParam = new IrSessionParam();
|
|
|
|
|
transactionNumberParam.setSessionId(irSession.getId());
|
|
|
|
|
transactionNumberParam.setParamName("khrzjhm");
|
|
|
|
|
transactionNumberParam.setParamValue(newSessionReqVO.getCaseNumber());
|
|
|
|
|
transactionNumberParam.setParamType("String");
|
|
|
|
|
irSessionParamService.save(transactionNumberParam);
|
|
|
|
|
}
|
|
|
|
|
if (CollUtil.isNotEmpty(newSessionReqVO.getTransactionAccount())) {
|
|
|
|
|
IrSessionParam transactionNumberParam = new IrSessionParam();
|
|
|
|
|
transactionNumberParam.setSessionId(irSession.getId());
|
|
|
|
|
transactionNumberParam.setParamName("jykh");
|
|
|
|
|
transactionNumberParam.setParamValue(JSONUtil.toJsonStr(newSessionReqVO.getTransactionAccount()));
|
|
|
|
|
transactionNumberParam.setParamType("List");
|
|
|
|
|
irSessionParamService.save(transactionNumberParam);
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotBlank(newSessionReqVO.getTransactionUsername())) {
|
|
|
|
|
IrSessionParam transactionNumberParam = new IrSessionParam();
|
|
|
|
|
transactionNumberParam.setSessionId(irSession.getId());
|
|
|
|
|
transactionNumberParam.setParamName("suspectName");
|
|
|
|
|
transactionNumberParam.setParamValue(newSessionReqVO.getTransactionUsername());
|
|
|
|
|
transactionNumberParam.setParamType("String");
|
|
|
|
|
irSessionParamService.save(transactionNumberParam);
|
|
|
|
|
}
|
|
|
|
|
return irSession;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|