From 55d694aaae4e421b5e55cd941500e08f85cb5d4d Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期四, 27 八月 2026 18:21:33 +0800
Subject: [PATCH] feat(sales): 添加框架合同订单功能并优化销售台账管理
---
src/main/java/com/ruoyi/device/dto/DeviceAreaDto.java | 35 +++++++++++++++++++++++++++++++++++
1 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/device/dto/DeviceAreaDto.java b/src/main/java/com/ruoyi/device/dto/DeviceAreaDto.java
new file mode 100644
index 0000000..c17909c
--- /dev/null
+++ b/src/main/java/com/ruoyi/device/dto/DeviceAreaDto.java
@@ -0,0 +1,35 @@
+package com.ruoyi.device.dto;
+
+import lombok.Data;
+
+/**
+ * 璁惧鍖哄煙 DTO
+ */
+@Data
+public class DeviceAreaDto {
+
+ /**
+ * 涓婚敭ID
+ */
+ private Long id;
+
+ /**
+ * 鍖哄煙/杞﹂棿/浣嶇疆鍚嶇О
+ */
+ private String name;
+
+ /**
+ * 鐖剁骇鍖哄煙ID
+ */
+ private Long parentId;
+
+ /**
+ * 鎺掑簭
+ */
+ private Integer sort;
+
+ /**
+ * 閮ㄩ棬ID
+ */
+ private Long deptId;
+}
\ No newline at end of file
--
Gitblit v1.9.3