
1 changed files with 32 additions and 0 deletions
@ -0,0 +1,32 @@ |
|||||
|
package com.yxt.anrui.fin.api.finuncollectedreceivablesdetailed; |
||||
|
|
||||
|
import com.yxt.common.core.utils.ExportEntityMap; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author Fan |
||||
|
* @description |
||||
|
* @date 2024/11/13 15:21 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CustomerBillSummaryExportVo { |
||||
|
|
||||
|
|
||||
|
@ExportEntityMap(CnName = "序号", EnName = "rankNo") |
||||
|
private Integer rankNo; |
||||
|
@ExportEntityMap(CnName = "客户名称", EnName = "customerName") |
||||
|
private String customerName; // 客户名称
|
||||
|
@ApiModelProperty("合同编号") |
||||
|
@ExportEntityMap(CnName = "合同编号", EnName = "contractNo") |
||||
|
private String contractNo; // 合同编号
|
||||
|
@ApiModelProperty("应收金额") |
||||
|
@ExportEntityMap(CnName = "应收金额", EnName = "reveivableMoney") |
||||
|
private String reveivableMoney; // 当前应收金额
|
||||
|
@ApiModelProperty("实收金额") |
||||
|
@ExportEntityMap(CnName = "实收金额", EnName = "subscriptionMoney") |
||||
|
private String subscriptionMoney; // 认款金额
|
||||
|
@ApiModelProperty("未认款金额") |
||||
|
@ExportEntityMap(CnName = "未认款金额", EnName = "noSubscriptionMoney") |
||||
|
private String noSubscriptionMoney; // 未认款金额
|
||||
|
} |
Loading…
Reference in new issue