
7 changed files with 126 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||
package com.yxt.anrui.terminal.api.risk.becollection; |
|||
|
|||
import com.yxt.common.core.domain.BaseEntity; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author Administrator |
|||
* @description |
|||
* @date 2023/8/16 14:34 |
|||
*/ |
|||
@Data |
|||
public class AppMonRepayDetails extends BaseEntity { |
|||
|
|||
@ApiModelProperty("分公司") |
|||
private String useOrgName; |
|||
@ApiModelProperty("销售部门") |
|||
private String dept; |
|||
@ApiModelProperty("销售专员") |
|||
private String staffName; |
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; |
|||
@ApiModelProperty("消贷合同编号") |
|||
private String loanContractNo; |
|||
@ApiModelProperty("资方名称") |
|||
private String bankName; |
|||
@ApiModelProperty("资方合同") |
|||
private String bankContractNo; |
|||
@ApiModelProperty("客户") |
|||
private String customer; |
|||
@ApiModelProperty("借款人名称") |
|||
private String borrowerName; |
|||
@ApiModelProperty("期数明细") |
|||
private List<AppMonRepayPeriodDetails> appMonRepayPeriodDetailsList; |
|||
} |
@ -0,0 +1,25 @@ |
|||
package com.yxt.anrui.terminal.api.risk.becollection; |
|||
|
|||
import com.yxt.common.core.domain.BaseEntity; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* @author Administrator |
|||
* @description |
|||
* @date 2023/8/16 14:34 |
|||
*/ |
|||
@Data |
|||
public class AppMonRepayPeriodDetails extends BaseEntity { |
|||
|
|||
@ApiModelProperty("期数") |
|||
private String period; |
|||
@ApiModelProperty("应还金额") |
|||
private BigDecimal dueMoney; |
|||
@ApiModelProperty("实收金额") |
|||
private BigDecimal receiptMoney; |
|||
@ApiModelProperty("未还金额") |
|||
private BigDecimal notRepaidMoney; |
|||
} |
Loading…
Reference in new issue