Commit 5783a52a by guojuxing

提现审批操作添加操作时间字段值

parent bba73504
......@@ -70,6 +70,7 @@ public class CashWithdrawalApiServiceImpl implements CashWithdrawalApiService{
return ServiceResponse.failure(ErrorCode.PARAMETER_ERROR.getCode(), "参数有误,无此记录");
}
//todo 操作人相关信息
record.setOperatorTime(new Date());
record.setCashWithdrawalStatus(WithdrawalStatusEnum.PASS.getCode());
cashWithdrawalService.update(record);
......@@ -95,6 +96,7 @@ public class CashWithdrawalApiServiceImpl implements CashWithdrawalApiService{
return ServiceResponse.failure(ErrorCode.PARAMETER_ERROR.getCode(), "参数有误,无此记录");
}
//todo 操作人相关信息
record.setOperatorTime(new Date());
record.setCashWithdrawalStatus(WithdrawalStatusEnum.REJECT.getCode());
record.setRejectReason(rejectReason);
......@@ -116,6 +118,7 @@ public class CashWithdrawalApiServiceImpl implements CashWithdrawalApiService{
return ServiceResponse.failure(ErrorCode.PARAMETER_ERROR.getCode(), "无此打款户信息记录,请前往添加");
}
//todo 操作人相关信息
record.setOperatorTime(new Date());
record.setPayId(payId);
record.setPayAccount(account.getBankAccount());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment