From f68b6f735eb1b0f3702022d3a25510fcd21d1cf8 Mon Sep 17 00:00:00 2001
From: renkang <8417338+k94314517@user.noreply.gitee.com>
Date: 星期四, 09 一月 2025 18:30:45 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/2.0.1' into 2.0.1
---
server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/vo/YwContractBillDataVO.java | 34 ++++++++++++++++++++++++++++++++++
1 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/vo/YwContractBillDataVO.java b/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/vo/YwContractBillDataVO.java
new file mode 100644
index 0000000..732fd26
--- /dev/null
+++ b/server/visits/dmvisit_service/src/main/java/com/doumee/dao/business/vo/YwContractBillDataVO.java
@@ -0,0 +1,34 @@
+package com.doumee.dao.business.vo;
+
+import com.doumee.dao.business.model.YwContractBill;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.util.List;
+
+/**
+ * Created by IntelliJ IDEA.
+ *
+ * @Author : Rk
+ * @create 2025/1/8 15:32
+ */
+@Data
+public class YwContractBillDataVO {
+
+ @ApiModelProperty(value = "鏀舵璐﹀崟鏁�", example = "1")
+ private Integer inAmount;
+
+ @ApiModelProperty(value = "鏀舵璐﹀崟閲戦", example = "1")
+ private BigDecimal inFee;
+
+ @ApiModelProperty(value = "浠樻璐﹀崟鏁�", example = "1")
+ private Integer payAmount;
+
+ @ApiModelProperty(value = "浠樻璐﹀崟閲戦", example = "1")
+ private BigDecimal payFee;
+
+ @ApiModelProperty(value = "璐﹀崟鍒楄〃", example = "1")
+ private List<YwContractBill> ywContractBillList;
+
+}
--
Gitblit v1.9.3