|
|
@@ -0,0 +1,31 @@
|
|
|
+package com.jeeplus.assess.invoice.service.dto;
|
|
|
+
|
|
|
+import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
+import com.jeeplus.core.service.dto.BaseDTO;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author: 徐滕
|
|
|
+ * @version: 2025-3-18 10:02
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class WorkInvoiceReceiptInfo extends BaseDTO {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @Excel(name = "*发票号码",width = 255)
|
|
|
+ private String invoiceNumber; //发票号码
|
|
|
+ @Excel(name = "*购方企业名称",width = 255)
|
|
|
+ private String buyerName; //购方名称
|
|
|
+ @Excel(name = "*收款金额",width = 255)
|
|
|
+ private String money; //收款金额
|
|
|
+ @Excel(name = "*提醒",width = 255)
|
|
|
+ private String errorMessage; //错误信息
|
|
|
+ private String distinctStr; //用于去重用的临时参数
|
|
|
+ private Integer moneyFlag; //用于对比金额是否符合的判定条件(0:相同。-1:小于.1:大于)
|
|
|
+ private String invoiceId; //开票信息id
|
|
|
+ private Date receiptMoneyDate; //全部收款时间
|
|
|
+ private Integer receiptMoney; //收款状态
|
|
|
+}
|