From e0ffffe6ec85b7552ef06701326dbe137278c3ba Mon Sep 17 00:00:00 2001
From: whycxzp <glperry@163.com>
Date: 星期四, 19 六月 2025 20:32:17 +0800
Subject: [PATCH] 维修调度-工单模块的设备信息关联表

---
 src/main/java/com/whyc/pojo/web_site/WorkflowDevice.java |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/whyc/pojo/web_site/WorkflowDevice.java b/src/main/java/com/whyc/pojo/web_site/WorkflowDevice.java
new file mode 100644
index 0000000..3a75062
--- /dev/null
+++ b/src/main/java/com/whyc/pojo/web_site/WorkflowDevice.java
@@ -0,0 +1,33 @@
+package com.whyc.pojo.web_site;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.ToString;
+
+@ToString
+@Data
+@TableName(schema = "web_site",value ="tb_workflow_device")
+@ApiModel("宸ュ崟妯″潡-鐜板満鏁呴殰妯″潡-缁翠慨-鍏ュ簱-鎶ュ簾-鍑哄簱鐨勮澶囦俊鎭�")
+public class WorkflowDevice {
+
+    private Integer id;
+    @ApiModelProperty("鍣ㄤ欢鍚嶇О")
+    private String name;
+    @ApiModelProperty("鍣ㄤ欢鍨嬪彿")
+    private String model;
+    @ApiModelProperty("鍣ㄤ欢鐗堟湰")
+    private String version;
+    @ApiModelProperty("鏁伴噺")
+    private Integer quantity;
+    @ApiModelProperty("鍝佺墝")
+    private String brand;
+    @ApiModelProperty("绫诲瀷")
+    private String type;
+    @ApiModelProperty("渚涘簲鍟�")
+    private String supplier;
+    @ApiModelProperty("宸ュ崟娴佺▼涓昏〃id")
+    private Integer mainId;
+
+}

--
Gitblit v1.9.1