shiyunteng
2 天以前 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
package com.by4cloud.platformx.business.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.persistence.Column;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ContractOutBoundMergeVo {
 
    @Schema(description = "税收分类")
    private String taxClass;
 
    @Schema(description = "税收分类拼接")
    private String itemName;
 
    private String materialName;
 
    @Schema(description = "标的物编码(内部唯一编码)")
    private String materialCode;
 
    @Schema(description = "标的物编码(内部唯一名称)")
    private String materialInternalName;
 
    private String specification;
 
    @Schema(description = "计量单位")
    private String unit;
 
    @Schema(description = "数量")
    private BigDecimal quantity;
 
    @Schema(description = "单价")
    private BigDecimal unitPrice;
 
    @Schema(description = "税率(百分比,如13表示13%)")
    private BigDecimal taxRate;
 
    @Schema(description = "税收分类编码")
    private String taxCode;
}