需求更改

main
liu 11 months ago
parent 57945362c0
commit 8a3bed8ed8

@ -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;
}

@ -16,12 +16,6 @@ public class NewSessionReqVO {
private Integer type;
@ApiModelProperty("播放速度(2位,小数后1位,例如:1.0,0.5,1.5,2.0)")
private BigDecimal speed;
@ApiModelProperty("交易用户名")
private String transactionUsername;
@ApiModelProperty("交易卡号")
private List<String> transactionAccount;
@ApiModelProperty("交易证件号码")
private String transactionNumber;
}

Loading…
Cancel
Save