
6 changed files with 95 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
package com.yxt.anrui.riskcenter.api.loanoverduebank; |
|||
|
|||
import com.yxt.common.core.utils.ExportEntityMap; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2024/1/9 |
|||
**/ |
|||
@Data |
|||
public class DownExcelOverdueBankVo { |
|||
|
|||
@ExportEntityMap(CnName = "资方合同号", EnName = "bankContractNo") |
|||
private String bankContractNo; |
|||
@ExportEntityMap(CnName = "期数", EnName = "period") |
|||
private String period; |
|||
@ExportEntityMap(CnName = "资方逾期月还", EnName = "bankOverdueMoney") |
|||
private String bankOverdueMoney; |
|||
} |
@ -0,0 +1,20 @@ |
|||
package com.yxt.anrui.riskcenter.api.loanoverduefin; |
|||
|
|||
import com.yxt.common.core.utils.ExportEntityMap; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2024/1/9 |
|||
**/ |
|||
@Data |
|||
public class DownloadExcelVo { |
|||
|
|||
@ExportEntityMap(CnName = "客户名称", EnName = "customerName") |
|||
private String customerName; |
|||
@ExportEntityMap(CnName = "车架号", EnName = "vinNo") |
|||
private String vinNo; |
|||
@ExportEntityMap(CnName = "财务累欠金额", EnName = "finMoney") |
|||
private String finMoney; |
|||
} |
Loading…
Reference in new issue