liu
16 小时以前 e65e22b0ce09b0e5746116c6cad0401e706024ea
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
package cn.iocoder.yudao.module.erp.controller.admin.purchase.ai.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Schema(description = "管理后台 - AI OCR 识别采购来票发票响应 VO")
@Data
public class ErpPurchaseInvoiceOcrRespVO {
 
    @Schema(description = "发票号码", example = "02564178")
    private String invoiceNo;
 
    @Schema(description = "发票抬头(购买方名称)", example = "XX科技有限公司")
    private String invoiceTitle;
 
    @Schema(description = "销售方名称(文本,供核对供应商是否匹配)", example = "小番茄公司")
    private String supplierName;
 
    @Schema(description = "来票金额(价税合计),单位:元", example = "9000.00")
    private BigDecimal price;
 
    @Schema(description = "开票日期", example = "2026-08-01")
    private LocalDate invoiceTime;
 
    @Schema(description = "发票类型(如增值税专用发票、增值税普通发票)", example = "增值税专用发票")
    private String invoiceType;
 
    @Schema(description = "税率(百分比),如图中未标注则为空", example = "13.0")
    private BigDecimal taxRate;
 
    @Schema(description = "备注", example = "含税含运费")
    private String remark;
 
    @Schema(description = "原始识别文本(前端可选展示用于调试/参考;识别失败时为错误提示)")
    private String rawText;
 
}