提交 f4d92c2d authored 作者: liuhaiquan's avatar liuhaiquan

Merge remote-tracking branch 'origin/v10.7_borrowing_and_repayment_20240118' into test

...@@ -37,7 +37,7 @@ public class CarrierOwnerPaymentController { ...@@ -37,7 +37,7 @@ public class CarrierOwnerPaymentController {
} }
@ApiOperation(value = "付款详情",notes = "<br>By:刘海泉") @ApiOperation(value = "付款详情",notes = "<br>By:刘海泉")
@PostMapping("/getOwnerPaymentDetail") @GetMapping("/getOwnerPaymentDetail")
@UnitCovert(param = false) @UnitCovert(param = false)
public Result<CarrierOwnerPaymentVO> getOwnerPaymentDetail(@RequestParam("id") @NotNull(message = "id不能为空") Integer id) { public Result<CarrierOwnerPaymentVO> getOwnerPaymentDetail(@RequestParam("id") @NotNull(message = "id不能为空") Integer id) {
CarrierOwnerPaymentVO vo = ownerPaymentService.getOwnerPaymentDetail(id); CarrierOwnerPaymentVO vo = ownerPaymentService.getOwnerPaymentDetail(id);
...@@ -45,7 +45,7 @@ public class CarrierOwnerPaymentController { ...@@ -45,7 +45,7 @@ public class CarrierOwnerPaymentController {
} }
@ApiOperation(value = "付款",notes = "<br>By:胡宇帆") @ApiOperation(value = "付款",notes = "<br>By:胡宇帆")
@PostMapping("/pay") @GetMapping("/pay")
@UnitCovert(param = false) @UnitCovert(param = false)
public Result<Object> pay(@RequestParam("id") @NotNull(message = "id不能为空") Integer id) { public Result<Object> pay(@RequestParam("id") @NotNull(message = "id不能为空") Integer id) {
ownerPaymentService.pay(id); ownerPaymentService.pay(id);
......
...@@ -709,6 +709,7 @@ public class OwnerLoanRecordServiceImpl implements OwnerLoanRecordService { ...@@ -709,6 +709,7 @@ public class OwnerLoanRecordServiceImpl implements OwnerLoanRecordService {
OwnerLoanRecord update = new OwnerLoanRecord(); OwnerLoanRecord update = new OwnerLoanRecord();
update.setId(ownerLoanRecord.getId()); update.setId(ownerLoanRecord.getId());
update.setLoanResidueBalance(balance); update.setLoanResidueBalance(balance);
update.setModifiedTime(ownerLoanRecord.getModifiedTime());
Integer flag = ownerLoanRecordDao.updateCasLoanRecord(update); Integer flag = ownerLoanRecordDao.updateCasLoanRecord(update);
if (flag > 0) { if (flag > 0) {
break; break;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论