shiyunteng
3 天以前 a0974f04b5a83e3ab152ce79e53f180e7b496165
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.by4cloud.platformx.business.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class GenInvoiceInfoVo {
 
    @Schema(description = "甲方名称")
    private String partyA;
 
    @Schema(description = "甲方税号")
    private String partyAOrgCode;
 
    @Schema(description = "乙方名称")
    private String partyB;
 
    @Schema(description = "乙方税号")
    private String partyBOrgCode;
 
    @Schema(description = "甲方开户行")
    private String partyAOpenBank;
 
    @Schema(description = "甲方银行账号")
    private String partyABankAccount;
 
    @Schema(description = "乙方开户行")
    private String partyBOpenBank;
 
    @Schema(description = "乙方银行账号")
    private String partyBBankAccount;
 
    @Schema(description = "开票金额(含税)")
    private BigDecimal totalPrice;
 
    @Schema(description = "大写开票金额")
    private String priceWords;
 
    private List<InvoiceItemVo> invoiceItemList;
}