From d93d2bc56ed06b3c060ff48f49591e8c5d779230 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期四, 14 九月 2023 22:33:45 +0800 Subject: [PATCH] 通讯方式字段转换 --- model/response/common.go | 30 +++++++++++++++++++++--------- 1 files changed, 21 insertions(+), 9 deletions(-) diff --git a/model/response/common.go b/model/response/common.go index 1a42102..788dd40 100644 --- a/model/response/common.go +++ b/model/response/common.go @@ -2,6 +2,7 @@ import ( "apsClient/model" + "apsClient/model/common" ) type PageResult struct { @@ -19,10 +20,18 @@ } type TaskData struct { - Order *model.Order - Procedure *model.Procedures - NextProcedure *model.Procedures - Config + Order *model.Order + Procedure *model.Procedures + + Position int //褰撳墠浠诲姟鍦ㄨ澶囩鍑犱釜浣嶇疆 + AllProcedures []string + CurrentProcedureIndex int +} + +type TaskResponse struct { + Tasks []*TaskData + TaskCount int64 + Workers []*common.ProcedureWorker `json:"workers"` // 浜哄憳鍒楄〃 } type Config struct { @@ -40,11 +49,14 @@ Value interface{} } -type NetConfig struct { - DeviceName string - DeviceStatus string +type ProductProgress struct { + FinishNumber int `json:"finishNumber"` + TotalNumber int `json:"totalNumber"` + PlcStatus int `json:"plcStatus"` } -type ProductProgress struct { - FinishNumber int +type TaskCountdown struct { + CountDownHour int64 //鍊掕鏃� 鏃� + CountDownMinute int64 //鍊掕鏃� 鍒� + ShowCountDown bool //鏄惁灞曠ず鍊掕鏃� } -- Gitblit v1.8.0