From 602d118cbe5d5a6910766c3e83208f09c0ba0bb6 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期四, 24 八月 2023 21:57:05 +0800 Subject: [PATCH] 增加设置生产总量接口 --- docs/docs.go | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 55 insertions(+), 3 deletions(-) diff --git a/docs/docs.go b/docs/docs.go index 1f4a9ab..aaf2c50 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -158,7 +158,7 @@ "application/json" ], "tags": [ - "鑾峰彇鍔ㄦ�佹暟鎹�" + "鐢熶骇鏁伴噺" ], "summary": "鑾峰彇鐢熶骇杩涘害", "responses": { @@ -178,6 +178,25 @@ } } ] + } + } + } + } + }, + "/v1/plc/setProductNumber": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "鐢熶骇鏁伴噺" + ], + "summary": "璁剧疆鐢熶骇鎬婚噺", + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "$ref": "#/definitions/contextx.Response" } } } @@ -535,6 +554,28 @@ "PlcMethodSerial" ] }, + "constvar.PlcStartAddressType": { + "type": "integer", + "enum": [ + 1, + 2 + ], + "x-enum-varnames": [ + "PlcStartAddressTypeFinishNumber", + "PlcStartAddressTypeTotalNumber" + ] + }, + "constvar.PlcStartAddressValueType": { + "type": "string", + "enum": [ + "string", + "int" + ], + "x-enum-varnames": [ + "PlcStartAddressValueTypeString", + "PlcStartAddressValueTypeInt" + ] + }, "contextx.Response": { "type": "object", "properties": { @@ -591,7 +632,11 @@ "properties": { "fieldName": { "description": "瀵瑰簲绯荤粺瀛楁", - "type": "integer" + "allOf": [ + { + "$ref": "#/definitions/constvar.PlcStartAddressType" + } + ] }, "length": { "description": "鏁版嵁闀垮害", @@ -603,7 +648,11 @@ }, "type": { "description": "鏁版嵁绫诲瀷", - "type": "string" + "allOf": [ + { + "$ref": "#/definitions/constvar.PlcStartAddressValueType" + } + ] } } }, @@ -871,6 +920,9 @@ "properties": { "finishNumber": { "type": "integer" + }, + "totalNumber": { + "type": "integer" } } }, -- Gitblit v1.8.0