
15 changed files with 2285 additions and 5 deletions
@ -0,0 +1,22 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loanpushfundhistory; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author Fan |
||||
|
* @description |
||||
|
* @date 2024/4/16 10:32 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class LoanPushFundHistoryPdfVo { |
||||
|
private Integer sortNo; |
||||
|
private String bankName; |
||||
|
private String bankNo; |
||||
|
private String vinNo; |
||||
|
private String borrowerName; |
||||
|
private String saleDept; |
||||
|
private String lastDate; |
||||
|
private String days; |
||||
|
private String money; |
||||
|
private String loanNo; |
||||
|
} |
@ -0,0 +1,23 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loanpushfundhistory; |
||||
|
|
||||
|
import com.yxt.common.core.query.Query; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author Fan |
||||
|
* @description |
||||
|
* @date 2024/4/16 8:38 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class LoanPushFundHistoryQuery implements Query { |
||||
|
|
||||
|
// private String loanContractNo;//贷款合同号
|
||||
|
// private String bankName; //资方
|
||||
|
// private String bankContractNo;//资方合同号
|
||||
|
// private String vinNo;//车架号
|
||||
|
// private String borrowerName; //贷款人
|
||||
|
// private String salesDept; //销售部门
|
||||
|
private String startTimes; //计提开始时间
|
||||
|
private String endTimes; //计提结束时间
|
||||
|
private String orgPath; |
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package com.yxt.anrui.riskcenter.api.loanpushfundhistory; |
||||
|
|
||||
|
import com.yxt.common.core.vo.Vo; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author Fan |
||||
|
* @description |
||||
|
* @date 2024/4/16 8:37 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class LoanPushFundHistoryVo implements Vo { |
||||
|
// private String loanContractNo;//贷款合同号
|
||||
|
// private String bankName; //资方
|
||||
|
// private String bankContractNo;//资方合同号
|
||||
|
// private String vinNo;//车架号
|
||||
|
// private String borrowerName; //贷款人
|
||||
|
// private String salesDept; //销售部门
|
||||
|
private String times; //计提时间
|
||||
|
private String money; //本次计提金额
|
||||
|
} |
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
@ -0,0 +1,25 @@ |
|||||
|
资金占用费计提 |
||||
|
${company!} |
||||
|
计提率:${percent!} |
||||
|
计提时间:${times!} |
||||
|
计提明细 |
||||
|
序号 |
||||
|
贷款合同号 |
||||
|
资方 |
||||
|
资方合同号 |
||||
|
车架号 |
||||
|
贷款人 |
||||
|
销售部门 |
||||
|
上次计提日期 |
||||
|
计提天数 |
||||
|
本次计提金额 |
||||
|
${list.sortNo!} |
||||
|
${list.loanNo!} |
||||
|
${list.bankName!} |
||||
|
${list.bankNo!} |
||||
|
${list.vinNo!} |
||||
|
${list.borrowerName!} |
||||
|
${list.saleDept!} |
||||
|
${list.lastDate!} |
||||
|
${list.days!} |
||||
|
${list.money!} |
Loading…
Reference in new issue