|
|
@ -1,6 +1,5 @@ |
|
|
|
package com.yxt.anrui.fin.api.finselectedreceivablesdetailed; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
import com.yxt.common.core.vo.Vo; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
@ -14,27 +13,26 @@ import lombok.Data; |
|
|
|
public class FinSelectReceivablesDetailedVo implements Vo { |
|
|
|
private static final long serialVersionUID = -1672232048017802807L; |
|
|
|
|
|
|
|
@ApiModelProperty("应收未收款项sid") |
|
|
|
private String sid; // 应收未收款项sid
|
|
|
|
@ApiModelProperty("合同sid") |
|
|
|
private String contractSid; // 合同sid
|
|
|
|
@ApiModelProperty("当前行sid") |
|
|
|
private String sid; |
|
|
|
@ApiModelProperty("应收未收记录sid") |
|
|
|
private String receivablesSid; |
|
|
|
@ApiModelProperty("合同编号") |
|
|
|
private String contractNo; // 合同编号
|
|
|
|
private String contractNo; |
|
|
|
@ApiModelProperty("客户sid") |
|
|
|
private String customerSid; // 客户sid
|
|
|
|
private String customerSid; |
|
|
|
@ApiModelProperty("客户名称") |
|
|
|
private String customerName; // 客户名称
|
|
|
|
private String customerName; |
|
|
|
@ApiModelProperty("车架号") |
|
|
|
@JsonProperty("VIN") |
|
|
|
private String VIN; // 车架号
|
|
|
|
private String vinNo; |
|
|
|
@ApiModelProperty("联系电话") |
|
|
|
private String customerPhone; // 联系电话
|
|
|
|
private String customerPhone; |
|
|
|
@ApiModelProperty("应收项目名称") |
|
|
|
private String receivablesName; // 应收项目名称
|
|
|
|
@ApiModelProperty("当前应收金额") |
|
|
|
private String currentReceivableMoney; // 当前应收金额
|
|
|
|
private String receivablesName; |
|
|
|
@ApiModelProperty("当前应收") |
|
|
|
private String currentReceivableMoney; |
|
|
|
|
|
|
|
@ApiModelProperty("应收金额") |
|
|
|
@ApiModelProperty("剩余应收") |
|
|
|
private String reveivableMoney; |
|
|
|
@ApiModelProperty("业务车辆sid") |
|
|
|
private String busVinSid; |
|
|
|