puzhibing
2023-06-12 d4f8078c2a062864dab885d6bd54fbe1195f85e2
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
package com.agentdriving.user.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @date 2023/3/24 9:55
 */
@Data
@ApiModel
public class Invoicing {
    @ApiModelProperty(value = "订单id,多个已逗号分隔", dataType = "string", required = true)
    private String orderIds;
    @ApiModelProperty(value = "发票抬头类型(1=企业,2=个人)", dataType = "int", required = true)
    private Integer billHeaderType;
    @ApiModelProperty(value = "公司名称/个人名称", dataType = "string", required = true)
    private String companyName;
    @ApiModelProperty(value = "公司税号", dataType = "string", required = false)
    private String companyTaxNumber;
    @ApiModelProperty(value = "发票更多内容", dataType = "string", required = true)
    private String moreContent;
    @ApiModelProperty(value = "收件人姓名", dataType = "string", required = true)
    private String addresseeName;
    @ApiModelProperty(value = "收件人手机号", dataType = "string", required = true)
    private String addresseePhone;
    @ApiModelProperty(value = "收件人电子邮箱", dataType = "string", required = true)
    private String addresseeEmail;
}