|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.yxt.anrui.terminal.api.finance.paymentapply; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
import com.yxt.common.core.vo.Vo; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
@ -17,25 +18,36 @@ public class PaymentApplyVo implements Vo { |
|
|
|
private static final long serialVersionUID = 1191604961683000023L; |
|
|
|
|
|
|
|
@ApiModelProperty("款项名称") |
|
|
|
@JsonProperty("paymentName") |
|
|
|
private String costTitleValue; |
|
|
|
//创建时间
|
|
|
|
@JsonProperty("申请时间") |
|
|
|
private String createTime; |
|
|
|
//申请人
|
|
|
|
@JsonProperty("申请人") |
|
|
|
private String name; |
|
|
|
//款项类别
|
|
|
|
@JsonProperty("paymentType") |
|
|
|
private String costTypeValue; |
|
|
|
//业务编号
|
|
|
|
@JsonProperty("businessId") |
|
|
|
private String busSid; |
|
|
|
//金额
|
|
|
|
@JsonProperty("price") |
|
|
|
private String cost; |
|
|
|
//付款单位名称
|
|
|
|
@JsonProperty("payerName") |
|
|
|
private String payCompany; |
|
|
|
//收款单位名称
|
|
|
|
@JsonProperty("payeeName") |
|
|
|
private String receiveCompany; |
|
|
|
//付款备注
|
|
|
|
@JsonProperty("paymentRemarks") |
|
|
|
private String remarks; |
|
|
|
//是否涉及车辆
|
|
|
|
@JsonProperty("involveCar") |
|
|
|
private String isVeh; |
|
|
|
@JsonProperty("involveCarKey") |
|
|
|
private String isVehValue; |
|
|
|
//付款明细List
|
|
|
|
private List<PaymentApplyDetailsVo> paymentList = new ArrayList<>(); |
|
|
@ -46,9 +58,10 @@ public class PaymentApplyVo implements Vo { |
|
|
|
private List<PaymentApplyVehicleVo> carList = new ArrayList<>(); |
|
|
|
@ApiModelProperty("车辆金额合计") |
|
|
|
private String carTotal; |
|
|
|
|
|
|
|
@JsonProperty("userSid") |
|
|
|
private String createBySid; |
|
|
|
private String taskId; |
|
|
|
@JsonProperty("procInsId") |
|
|
|
private String procInstId; |
|
|
|
|
|
|
|
} |
|
|
|