新增根据合同编号获得交易信息接口
This commit is contained in:
@@ -242,6 +242,30 @@ public class ContractRespDTO {
|
||||
@Schema(description = "模板中间表ID")
|
||||
private Long businessId;
|
||||
|
||||
@Schema(description = "甲方户名")
|
||||
private String purchaseAccountName;
|
||||
|
||||
@Schema(description = "甲方开户行")
|
||||
private String purchaseBankAccount;
|
||||
|
||||
@Schema(description = "甲方户号")
|
||||
private String purchaseAccountNumber;
|
||||
|
||||
@Schema(description = "甲方税号/社会信用代码")
|
||||
private String purchaseTaxNumber;
|
||||
|
||||
@Schema(description = "乙方户名")
|
||||
private String salesAccountName;
|
||||
|
||||
@Schema(description = "乙方开户行")
|
||||
private String salesBankAccount;
|
||||
|
||||
@Schema(description = "乙方户号")
|
||||
private String salesAccountNumber;
|
||||
|
||||
@Schema(description = "乙方税号/社会信用代码")
|
||||
private String salesTaxNumber;
|
||||
|
||||
// 物料信息
|
||||
private List<DetailRespDTO> detail;
|
||||
|
||||
|
||||
@@ -248,6 +248,30 @@ public class ContractRespVO {
|
||||
@Schema(description = "模板中间表ID")
|
||||
private Long businessId;
|
||||
|
||||
@Schema(description = "甲方户名")
|
||||
private String purchaseAccountName;
|
||||
|
||||
@Schema(description = "甲方开户行")
|
||||
private String purchaseBankAccount;
|
||||
|
||||
@Schema(description = "甲方户号")
|
||||
private String purchaseAccountNumber;
|
||||
|
||||
@Schema(description = "甲方税号/社会信用代码")
|
||||
private String purchaseTaxNumber;
|
||||
|
||||
@Schema(description = "乙方户名")
|
||||
private String salesAccountName;
|
||||
|
||||
@Schema(description = "乙方开户行")
|
||||
private String salesBankAccount;
|
||||
|
||||
@Schema(description = "乙方户号")
|
||||
private String salesAccountNumber;
|
||||
|
||||
@Schema(description = "乙方税号/社会信用代码")
|
||||
private String salesTaxNumber;
|
||||
|
||||
// 物料信息
|
||||
private List<DetailRespVO> detail;
|
||||
|
||||
|
||||
@@ -218,6 +218,30 @@ public class ContractSaveReqVO {
|
||||
@Schema(description = "模板中间表ID")
|
||||
private Long businessId;
|
||||
|
||||
@Schema(description = "甲方户名")
|
||||
private String purchaseAccountName;
|
||||
|
||||
@Schema(description = "甲方开户行")
|
||||
private String purchaseBankAccount;
|
||||
|
||||
@Schema(description = "甲方户号")
|
||||
private String purchaseAccountNumber;
|
||||
|
||||
@Schema(description = "甲方税号/社会信用代码")
|
||||
private String purchaseTaxNumber;
|
||||
|
||||
@Schema(description = "乙方户名")
|
||||
private String salesAccountName;
|
||||
|
||||
@Schema(description = "乙方开户行")
|
||||
private String salesBankAccount;
|
||||
|
||||
@Schema(description = "乙方户号")
|
||||
private String salesAccountNumber;
|
||||
|
||||
@Schema(description = "乙方税号/社会信用代码")
|
||||
private String salesTaxNumber;
|
||||
|
||||
// 物料信息
|
||||
private List<DetailSaveReqVO> detail;
|
||||
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
package com.zt.plat.module.contractorder.api.vo.contract;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Schema(description = "管理后台 - 合同交易信息 Response VO")
|
||||
@Data
|
||||
public class TransactionInfoRespVO {
|
||||
|
||||
@Schema(description = "公司编号")
|
||||
private String companyNumber;
|
||||
|
||||
@Schema(description = "公司名称")
|
||||
private String companyName;
|
||||
|
||||
@Schema(description = "公司户名")
|
||||
private String companyAccountName;
|
||||
|
||||
@Schema(description = "公司开户行")
|
||||
private String companyBankAccount;
|
||||
|
||||
@Schema(description = "公司户号")
|
||||
private String companyAccountNumber;
|
||||
|
||||
@Schema(description = "公司税号/社会信用代码")
|
||||
private String companyTaxNumber;
|
||||
|
||||
@Schema(description = "客商编号")
|
||||
private String supplierNumber;
|
||||
|
||||
@Schema(description = "客商名称")
|
||||
private String supplierName;
|
||||
|
||||
@Schema(description = "客商户名")
|
||||
private String supplierAccountName;
|
||||
|
||||
@Schema(description = "客商开户行")
|
||||
private String supplierBankAccount;
|
||||
|
||||
@Schema(description = "客商户号")
|
||||
private String supplierAccountNumber;
|
||||
|
||||
@Schema(description = "客商税号/社会信用代码")
|
||||
private String supplierTaxNumber;
|
||||
}
|
||||
Reference in New Issue
Block a user