提交 91ea15ce authored 作者: huyufan's avatar huyufan

借款

上级 ec384390
...@@ -69,11 +69,11 @@ public class OwnerLoanRecord implements HasKey<Integer> { ...@@ -69,11 +69,11 @@ public class OwnerLoanRecord implements HasKey<Integer> {
private BigDecimal loanResidueBalance; private BigDecimal loanResidueBalance;
@TableField("borrower_id") @TableField("borrower_id")
@ApiModelProperty("借方Id") @ApiModelProperty("借方Id")
private Integer borrowerId; private Integer borrowerId;
@TableField("borrower") @TableField("borrower")
@ApiModelProperty("借方") @ApiModelProperty("借方")
private String borrower; private String borrower;
@ApiModelProperty("借款方账户") @ApiModelProperty("借款方账户")
...@@ -90,7 +90,7 @@ public class OwnerLoanRecord implements HasKey<Integer> { ...@@ -90,7 +90,7 @@ public class OwnerLoanRecord implements HasKey<Integer> {
private String lendingParty; private String lendingParty;
@TableField("lending_party_account") @TableField("lending_party_account")
@ApiModelProperty("借方账户") @ApiModelProperty("借方账户")
private String lendingPartyAccount; private String lendingPartyAccount;
@TableField("payee") @TableField("payee")
......
...@@ -128,9 +128,13 @@ public class OwnerLoanRecordServiceImpl implements OwnerLoanRecordService { ...@@ -128,9 +128,13 @@ public class OwnerLoanRecordServiceImpl implements OwnerLoanRecordService {
entity.setOwnerUserName(loginUserInfo.getUserName()); entity.setOwnerUserName(loginUserInfo.getUserName());
entity.setMobile(loginUserInfo.getUserMobile()); entity.setMobile(loginUserInfo.getUserMobile());
entity.setLoanBalance(param.getLoanBalance()); entity.setLoanBalance(param.getLoanBalance());
entity.setBorrowerId(param.getBorrowerId());
entity.setBorrower(param.getBorrower()); entity.setBorrower(param.getBorrower());
entity.setBorrowerAccount(ownerBindCardRecord.getBankCardNumber());
entity.setLendingParty(param.getLendingParty()); entity.setLendingParty(param.getLendingParty());
entity.setLendingPartyAccount(ownerBindCardRecord.getBankCardNumber());
entity.setPayee(param.getPayee()); entity.setPayee(param.getPayee());
entity.setPayeeAccount(param.getPayeeAccount()); entity.setPayeeAccount(param.getPayeeAccount());
entity.setCreateBy(loginUserInfo.getUserName()); entity.setCreateBy(loginUserInfo.getUserName());
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论