|
@ -25,7 +25,7 @@ |
|
|
*********************************************************/ |
|
|
*********************************************************/ |
|
|
package com.yxt.anrui.fin.api.finpaymentapplydetailsbelow; |
|
|
package com.yxt.anrui.fin.api.finpaymentapplydetailsbelow; |
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
import com.yxt.anrui.fin.api.finpaymentapplydetailsbeloweve.FinPaymentapplyDetailsBelowEveDetailsVo; |
|
|
import com.yxt.anrui.fin.api.finpaymentapplydetailsbeloweve.FinPaymentapplyDetailsBelowEveDetailsVo; |
|
|
import com.yxt.anrui.fin.api.finpaymentapplydetailsbeloweve.FinPaymentapplyDetailsBelowEveDto; |
|
|
import com.yxt.anrui.fin.api.finpaymentapplydetailsbeloweve.FinPaymentapplyDetailsBelowEveDto; |
|
|
import com.yxt.common.core.dto.Dto; |
|
|
import com.yxt.common.core.dto.Dto; |
|
@ -35,21 +35,9 @@ import io.swagger.annotations.ApiModelProperty; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
import java.math.BigDecimal; |
|
|
|
|
|
import java.util.Date; |
|
|
import java.util.List; |
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Project: anrui-fin(付款明细) <br/> |
|
|
|
|
|
* File: FinPaymentapplyDetailsBelowDto.java <br/> |
|
|
|
|
|
* Class: com.yxt.anrui.fin.api.finpaymentapplydetailsbelow.FinPaymentapplyDetailsBelowDto <br/> |
|
|
|
|
|
* Description: 付款申请明细-明细 数据传输对象. <br/> |
|
|
|
|
|
* Copyright: Copyright (c) 2011 <br/> |
|
|
|
|
|
* Company: https://gitee.com/liuzp315 <br/>
|
|
|
|
|
|
* Makedate: 2024-12-12 16:08:28 <br/> |
|
|
|
|
|
* |
|
|
|
|
|
* @author liupopo |
|
|
|
|
|
* @version 1.0 |
|
|
|
|
|
* @since 1.0 |
|
|
|
|
|
*/ |
|
|
|
|
|
@Data |
|
|
@Data |
|
|
@ApiModel(value = "付款申请明细-明细 数据传输对象", description = "付款申请明细-明细 数据传输对象") |
|
|
@ApiModel(value = "付款申请明细-明细 数据传输对象", description = "付款申请明细-明细 数据传输对象") |
|
|
public class FinPaymentapplyDetailsBelowDto implements Dto { |
|
|
public class FinPaymentapplyDetailsBelowDto implements Dto { |
|
@ -58,28 +46,37 @@ public class FinPaymentapplyDetailsBelowDto implements Dto { |
|
|
|
|
|
|
|
|
@ApiModelProperty("备注") |
|
|
@ApiModelProperty("备注") |
|
|
private String remarks; |
|
|
private String remarks; |
|
|
@ApiModelProperty("款项名称,数据字典") |
|
|
@ApiModelProperty("款项名称,数据字典") |
|
|
private String costTitleKey; // 款项名称,数据字典
|
|
|
private String costTitleKey; // 款项名称,数据字典
|
|
|
@ApiModelProperty("款项名称") |
|
|
@ApiModelProperty("款项名称") |
|
|
private String costTitleValue; // 款项名称
|
|
|
private String costTitleValue; // 款项名称
|
|
|
@ApiModelProperty("付款方式key") |
|
|
@ApiModelProperty("付款方式key") |
|
|
private String paymentTypeKey; // 付款方式key
|
|
|
private String paymentTypeKey; // 付款方式key
|
|
|
@ApiModelProperty("付款方式value") |
|
|
@ApiModelProperty("付款方式value") |
|
|
private String paymentType; // 付款方式value
|
|
|
private String paymentType; // 付款方式value
|
|
|
@ApiModelProperty("收款单位名称") |
|
|
@ApiModelProperty("收款单位名称") |
|
|
private String receiveCompany; // 收款单位名称
|
|
|
private String receiveCompany; // 收款单位名称
|
|
|
@ApiModelProperty("收款单位sid") |
|
|
@ApiModelProperty("收款单位sid") |
|
|
private String receiveCompanySid; // 收款单位sid
|
|
|
private String receiveCompanySid; // 收款单位sid
|
|
|
@ApiModelProperty("开户行") |
|
|
@ApiModelProperty("开户行") |
|
|
private String bank; // 开户行
|
|
|
private String bank; // 开户行
|
|
|
@ApiModelProperty("收款银行账号") |
|
|
@ApiModelProperty("收款银行账号") |
|
|
private String receivingAccount; // 收款银行账号
|
|
|
private String receivingAccount; // 收款银行账号
|
|
|
@ApiModelProperty("付款金额") |
|
|
@ApiModelProperty("付款金额") |
|
|
private BigDecimal payAccount; // 付款金额
|
|
|
private BigDecimal payAccount; // 付款金额
|
|
|
@ApiModelProperty("付款申请明细sid") |
|
|
@ApiModelProperty("付款申请明细sid") |
|
|
private String detailSid; // 付款申请明细sid
|
|
|
private String detailSid; // 付款申请明细sid
|
|
|
@ApiModelProperty("后期是否有平仓付款") |
|
|
@ApiModelProperty("后期是否有平仓付款") |
|
|
private String isPay; // 后期是否有平仓付款
|
|
|
private String isPay; // 后期是否有平仓付款
|
|
|
|
|
|
@ApiModelProperty("平仓款名称") |
|
|
|
|
|
private String closFundName; |
|
|
|
|
|
@ApiModelProperty("开通日期") |
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
|
|
private Date openDate; |
|
|
|
|
|
@ApiModelProperty("付款单位sid") |
|
|
|
|
|
private String payCompanySid; |
|
|
|
|
|
@ApiModelProperty("付款单位") |
|
|
|
|
|
private String payCompany; |
|
|
|
|
|
|
|
|
@ApiModelProperty |
|
|
@ApiModelProperty |
|
|
private List<FinPaymentapplyDetailsBelowEveDto> finPaymentapplyDetailsBelowEveList; |
|
|
private List<FinPaymentapplyDetailsBelowEveDto> finPaymentapplyDetailsBelowEveList; |
|
|