From cab6eea89a0d82710369604ecb51f1cdb122e433 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期四, 19 十月 2023 17:26:34 +0800
Subject: [PATCH] fix

---
 model/common/common.go |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/model/common/common.go b/model/common/common.go
index ead7e90..9df61af 100644
--- a/model/common/common.go
+++ b/model/common/common.go
@@ -137,3 +137,19 @@
 	ProcedureName string `gorm:"type:varchar(191);comment:宸ュ簭鍚嶇О" json:"procedureName"`
 	DeviceID      string `gorm:"index;type:varchar(191);not null;comment:璁惧ID" json:"deviceId"`
 }
+
+type PullDataType string
+
+const (
+	PullDataTypeProcessModel = "process_model"
+)
+
+// MsgPullDataRequest 鎷夊彇浜戠鏁版嵁
+type MsgPullDataRequest struct {
+	DataType PullDataType `json:"dataType"` //瑕佹媺鍙栫殑鏁版嵁绫诲瀷
+}
+
+type MsgPullDataResponse struct {
+	DataType PullDataType `json:"dataType"` //瑕佹媺鍙栫殑鏁版嵁绫诲瀷
+	Data     interface{}  //杩斿洖鐨勬暟鎹�
+}

--
Gitblit v1.8.0