From 5a423dfede4ee5caa88adf95ec52d35a85072321 Mon Sep 17 00:00:00 2001
From: buhuazhen <hua100783@gmail.com>
Date: 星期三, 27 八月 2025 14:35:29 +0800
Subject: [PATCH] Merge branch 'feature/0826' into pim-jlmy

---
 main-business/src/main/java/com/ruoyi/business/vo/DuePayableVo.java |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/main-business/src/main/java/com/ruoyi/business/vo/DuePayableVo.java b/main-business/src/main/java/com/ruoyi/business/vo/DuePayableVo.java
new file mode 100644
index 0000000..cfbb5c8
--- /dev/null
+++ b/main-business/src/main/java/com/ruoyi/business/vo/DuePayableVo.java
@@ -0,0 +1,56 @@
+package com.ruoyi.business.vo;
+
+import com.ruoyi.basic.entity.dto.SimpleStorageDto;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+import java.math.BigDecimal;
+import java.time.LocalDate;
+import java.util.List;
+
+/**
+ * @author buhuazhen
+ * @date 2025/8/26
+ * @email 3038525872@qq.com
+ */
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class DuePayableVo {
+
+    private Long id;
+
+    private String ticketNo;
+
+    private Long purchaseRegistrationId;
+
+    // 鏈夐渶瑕佸彲浠ユ煡璇㈠嚭閲囪喘鍏蜂綋淇℃伅
+
+    private Integer payableType;
+
+    private BigDecimal paymentAmount;
+
+    private List<SimpleStorageDto> attachFileList;
+
+    private Long registrantId;
+
+    private LocalDate registrationDate;
+    public DuePayableVo(Long id, String ticketNo, Long purchaseRegistrationId, Integer payableType, BigDecimal paymentAmount) {
+        this.id = id;
+        this.ticketNo = ticketNo;
+        this.purchaseRegistrationId = purchaseRegistrationId;
+        this.payableType = payableType;
+        this.paymentAmount = paymentAmount;
+    }
+
+    public DuePayableVo(Long id, String ticketNo, Long purchaseRegistrationId, Integer payableType, BigDecimal paymentAmount, Long registrantId, LocalDate registrationDate) {
+        this.id = id;
+        this.ticketNo = ticketNo;
+        this.purchaseRegistrationId = purchaseRegistrationId;
+        this.payableType = payableType;
+        this.paymentAmount = paymentAmount;
+        this.registrantId = registrantId;
+        this.registrationDate = registrationDate;
+    }
+}

--
Gitblit v1.9.3