From b555874608be2e4bb40cceba60b497c04caef842 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期二, 12 九月 2023 14:17:51 +0800
Subject: [PATCH] 三菱协议更改

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

diff --git a/model/response/common.go b/model/response/common.go
index 05246bb..ff33efc 100644
--- a/model/response/common.go
+++ b/model/response/common.go
@@ -11,7 +11,41 @@
 	PageSize int         `json:"pageSize"`
 }
 
+type ListResponse struct {
+	Code  int         `json:"code"`
+	Msg   string      `json:"msg"`
+	Data  interface{} `json:"data"`
+	Count int64       `json:"count"`
+}
+
 type TaskData struct {
 	Order     *model.Order
 	Procedure *model.Procedures
+	Config
+}
+
+type Config struct {
+	DeviceName   string
+	DeviceStatus string
+}
+
+type ProcessParamsResponse struct {
+	Number string
+	Params []ProcessParams
+}
+
+type ProcessParams struct {
+	Key   string
+	Value interface{}
+}
+
+type ProductProgress struct {
+	FinishNumber int `json:"finishNumber"`
+	TotalNumber  int `json:"totalNumber"`
+}
+
+type TaskCountdown struct {
+	CountDownHour   int64 //鍊掕鏃� 鏃�
+	CountDownMinute int64 //鍊掕鏃� 鍒�
+	ShowCountDown   bool  //鏄惁灞曠ず鍊掕鏃�
 }

--
Gitblit v1.8.0