From 2d9f1f41744f49377a7ec930635d4889b9d355c6 Mon Sep 17 00:00:00 2001
From: kongdeqiang <123456>
Date: 星期二, 01 四月 2025 16:04:00 +0800
Subject: [PATCH] fix: 修改设备添加逻辑

---
 platformx-device-api/src/main/java/com/by4cloud/platformx/device/entity/DeviceLeasingLedger.java |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/platformx-device-api/src/main/java/com/by4cloud/platformx/device/entity/DeviceLeasingLedger.java b/platformx-device-api/src/main/java/com/by4cloud/platformx/device/entity/DeviceLeasingLedger.java
index 82736b0..cb36b9a 100644
--- a/platformx-device-api/src/main/java/com/by4cloud/platformx/device/entity/DeviceLeasingLedger.java
+++ b/platformx-device-api/src/main/java/com/by4cloud/platformx/device/entity/DeviceLeasingLedger.java
@@ -87,4 +87,20 @@
 	@Transient
 	@TableField(exist = false)
 	private List<DeviceLeasingLedgerItem> ledgerItemList;
+
+	/**
+	 * 鍑虹鏃ユ湡
+	 */
+	@JsonFormat(pattern = "yyyy-MM-dd")
+	@Schema(description = "鍑虹鏃ユ湡")
+	@Column(columnDefinition="datetime comment '鍑虹鏃ユ湡'")
+	private Date deliveryDate;
+
+
+	/**
+	 * 鍚堝悓id
+	 */
+	@Schema(description = "鍚堝悓id")
+	@Column(columnDefinition="bigint comment '鍚堝悓id'")
+	private Long contractId;
 }

--
Gitblit v1.9.1