From f8cc2e04cfdd3c7f6d9555e2c9c96fa39e1e30c4 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期一, 30 十月 2023 12:15:22 +0800
Subject: [PATCH] update

---
 docs/swagger.yaml |  809 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 775 insertions(+), 34 deletions(-)

diff --git a/docs/swagger.yaml b/docs/swagger.yaml
index d7c6fa3..e17229c 100644
--- a/docs/swagger.yaml
+++ b/docs/swagger.yaml
@@ -1,4 +1,121 @@
 definitions:
+  common.ProcedureMaterial:
+    properties:
+      amount:
+        type: number
+      materialId:
+        type: string
+      materialName:
+        type: string
+      unit:
+        type: string
+    type: object
+  common.ProcedureWorker:
+    properties:
+      endTime:
+        type: integer
+      phoneNum:
+        type: string
+      startTime:
+        type: integer
+      workerId:
+        type: string
+      workerName:
+        type: string
+    type: object
+  common.ProductProcedure:
+    properties:
+      allProcedureNames:
+        description: 鎵�灞炲伐鍗曞伐搴忓垪琛�
+        items:
+          type: string
+        type: array
+      channel:
+        description: 閫氶亾搴忓彿
+        type: integer
+      deviceId:
+        type: string
+      deviceName:
+        type: string
+      endTime:
+        type: integer
+      inputMaterials:
+        description: 杈撳叆鐗╂枡鍒楄〃
+        items:
+          $ref: '#/definitions/common.ProcedureMaterial'
+        type: array
+      nextProcedureId:
+        type: string
+      nextProcedureName:
+        type: string
+      outputMaterials:
+        description: 杈撳嚭鐗╂枡鍒楄〃
+        items:
+          $ref: '#/definitions/common.ProcedureMaterial'
+        type: array
+      procedureId:
+        type: string
+      procedureName:
+        type: string
+      startTime:
+        type: integer
+      workHours:
+        type: number
+      workers:
+        description: 浜哄憳鍒楄〃
+        items:
+          $ref: '#/definitions/common.ProcedureWorker'
+        type: array
+    type: object
+  conf.Prompt:
+    properties:
+      plcNotConnected:
+        type: string
+      safeProduce:
+        type: string
+    type: object
+  constvar.PlcMethod:
+    enum:
+    - modbusTCP
+    - serial
+    - 缃戠粶
+    - 涓插彛
+    type: string
+    x-enum-varnames:
+    - PlcMethodModbusTCP
+    - PlcMethodSerial
+    - PlcMethodModbusTCPChinese
+    - PlcMethodSerialChinese
+  constvar.PlcStartAddressType:
+    enum:
+    - 1
+    - 2
+    type: integer
+    x-enum-varnames:
+    - PlcStartAddressTypeFinishNumber
+    - PlcStartAddressTypeTotalNumber
+  constvar.PlcStartAddressValueType:
+    enum:
+    - string
+    - int
+    type: string
+    x-enum-varnames:
+    - PlcStartAddressValueTypeString
+    - PlcStartAddressValueTypeInt
+  constvar.TaskMode:
+    enum:
+    - 1
+    - 2
+    - 3
+    type: integer
+    x-enum-comments:
+      TaskModeCurrent: 鏈紑濮嬬殑鍜岃繘琛屼腑鐨�
+      TaskModeLastFinished: 涓婁竴涓粨鏉熺殑
+      TaskModeUnStarted: 鏈紑濮嬬殑
+    x-enum-varnames:
+    - TaskModeUnStarted
+    - TaskModeCurrent
+    - TaskModeLastFinished
   contextx.Response:
     properties:
       code:
@@ -7,58 +124,407 @@
       msg:
         type: string
     type: object
-  model.ScheduleTask:
+  model.DevicePlc:
+    properties:
+      address:
+        description: |-
+          PortName   string `gorm:"type:varchar(191);comment:绔彛鍚嶇О" json:"portName"`
+          Frequency  int    `gorm:"comment:鏁版嵁鏇存柊棰戠巼 0-瀹炴椂鏇存柊 1-1娆�/绉�" json:"frequency"`
+        type: string
+      baudRate:
+        description: 涓插彛娉㈢壒鐜囷紝 method = serial鏃� 鐢�
+        type: integer
+      brand:
+        type: string
+      details:
+        items:
+          $ref: '#/definitions/model.DevicePlcAddress'
+        type: array
+      id:
+        type: integer
+      isOpen:
+        type: boolean
+      method:
+        $ref: '#/definitions/constvar.PlcMethod'
+      port:
+        description: plc 绔彛鍙凤紝  method =  modbusTCP鐢�
+        type: integer
+      serialName:
+        description: 涓插彛鍚嶇О锛宮ethod = serial鏃� 鐢�
+        type: string
+    type: object
+  model.DevicePlcAddress:
+    properties:
+      channel:
+        description: 鏁版嵁璧峰鍦板潃
+        type: integer
+      fieldName:
+        allOf:
+        - $ref: '#/definitions/constvar.PlcStartAddressType'
+        description: 瀵瑰簲绯荤粺瀛楁
+      length:
+        description: 鏁版嵁闀垮害
+        type: integer
+      startAddress:
+        description: 鏁版嵁璧峰鍦板潃
+        type: integer
+      type:
+        allOf:
+        - $ref: '#/definitions/constvar.PlcStartAddressValueType'
+        description: 鏁版嵁绫诲瀷
+    type: object
+  model.NetConfig:
+    properties:
+      dns:
+        description: dns
+        type: string
+      gateway:
+        description: 缃戝叧
+        type: string
+      id:
+        type: integer
+      ip:
+        description: 鏈満ip
+        type: string
+      mask:
+        description: 瀛愮綉鎺╃爜
+        type: string
+      networkCard:
+        description: 缃戝崱
+        type: string
+      status:
+        allOf:
+        - $ref: '#/definitions/model.NetConfigStatus'
+        description: 鐘舵�侊紙1鍚敤2绂佺敤锛�
+    required:
+    - gateway
+    - ip
+    - mask
+    - networkCard
+    type: object
+  model.NetConfigStatus:
+    enum:
+    - 1
+    - 2
+    type: integer
+    x-enum-comments:
+      NetConfigStatusDisabled: 鍏抽棴
+      NetConfigStatusEnabled: 寮�鍚�
+    x-enum-varnames:
+    - NetConfigStatusEnabled
+    - NetConfigStatusDisabled
+  model.Order:
     properties:
       amount:
-        description: |-
-          Parameter   string          `json:"parameter"`   //浜у搧鍚嶇О
-          Customer    string          `json:"customer"`
-          DeliverDate string          `json:"deliverDate"`
-          OrderAttr   string          `json:"orderAttr"`
         type: number
-      data:
-        description: 鎺掔▼浠诲姟json涓�
+      customer:
+        type: string
+      deliverDate:
+        type: string
+      endTime:
+        type: integer
+      orderAttr:
+        description: 璁㈠崟灞炴�ф嫾鎺ョ殑瀛楃涓诧紝鍗宠揣鐗╂弿杩�
+        type: string
+      orderId:
+        type: string
+      parameter:
+        type: string
+      productId:
+        type: string
+      productName:
+        type: string
+      startTime:
+        type: integer
+      status:
+        $ref: '#/definitions/model.OrderStatus'
+      unit:
+        type: string
+      workOrderId:
+        type: string
+    type: object
+  model.OrderStatus:
+    enum:
+    - 1
+    - 2
+    - 3
+    type: integer
+    x-enum-varnames:
+    - OrderStatusWaitProcess
+    - OrderStatusProcessing
+    - OrderStatusFinished
+  model.PlcBrand:
+    properties:
+      id:
+        type: integer
+      name:
+        type: string
+    type: object
+  model.ProcedureStatus:
+    enum:
+    - 1
+    - 2
+    - 3
+    type: integer
+    x-enum-varnames:
+    - ProcedureStatusWaitProcess
+    - ProcedureStatusProcessing
+    - ProcedureStatusFinished
+  model.Procedures:
+    properties:
+      channel:
+        description: 閫氶亾
+        type: integer
+      deviceId:
         type: string
       endTime:
         type: integer
       id:
         type: integer
-      orderId:
-        description: 璁㈠崟id
+      procedure:
+        allOf:
+        - $ref: '#/definitions/common.ProductProcedure'
+        description: common.ProductProcedure  瀵硅薄
+      procedureId:
         type: string
-      productId:
-        description: 璁㈠崟id
-        type: string
-      productName:
-        description: 浜у搧鍚嶇О
+      processModelNumber:
+        description: 宸ヨ壓妯″瀷缂栧彿
         type: string
       startTime:
         type: integer
-      unit:
-        type: string
+      status:
+        $ref: '#/definitions/model.ProcedureStatus'
     type: object
-  request.TaskInfo:
+  model.ProcessModel:
     properties:
-      device:
-        description: 璁惧
+      deviceId:
+        description: 鐢ㄤ簬杩囨护鑾峰彇nsq娑堟伅
         type: string
-      orderId:
-        description: 璁㈠崟鍙�
+      isUpdate:
+        description: 鍓嶇鐢�
+        type: boolean
+      newNumber:
         type: string
-      password:
-        description: 浜у搧
+      newParamsMap:
+        additionalProperties: true
+        type: object
+      number:
+        description: 宸ヨ壓妯″瀷缂栧彿
         type: string
+      params:
+        type: string
+      paramsMap:
+        additionalProperties: true
+        type: object
       procedure:
         description: 宸ュ簭
         type: string
-      workOrder:
-        description: 宸ュ崟
+      product:
+        description: 浜у搧鍚嶇О
         type: string
+    type: object
+  request.AddPlcBrand:
+    properties:
+      id:
+        type: integer
+      name:
+        type: string
+    type: object
+  request.SendProcessParams:
+    properties:
+      procedureId:
+        type: integer
+    required:
+    - procedureId
+    type: object
+  request.UpdatePlc:
+    properties:
+      address:
+        description: |-
+          PortName   string `gorm:"type:varchar(191);comment:绔彛鍚嶇О" json:"portName"`
+          Frequency  int    `gorm:"comment:鏁版嵁鏇存柊棰戠巼 0-瀹炴椂鏇存柊 1-1娆�/绉�" json:"frequency"`
+        type: string
+      baudRate:
+        description: 涓插彛娉㈢壒鐜囷紝 method = serial鏃� 鐢�
+        type: integer
+      brand:
+        type: string
+      details:
+        items:
+          $ref: '#/definitions/model.DevicePlcAddress'
+        type: array
+      id:
+        type: integer
+      isOpen:
+        type: boolean
+      method:
+        $ref: '#/definitions/constvar.PlcMethod'
+      port:
+        description: plc 绔彛鍙凤紝  method =  modbusTCP鐢�
+        type: integer
+      serialName:
+        description: 涓插彛鍚嶇О锛宮ethod = serial鏃� 鐢�
+        type: string
+    type: object
+  request.UpdatePlcBrand:
+    properties:
+      id:
+        type: integer
+      name:
+        type: string
+    type: object
+  response.ListResponse:
+    properties:
+      code:
+        type: integer
+      count:
+        type: integer
+      data: {}
+      msg:
+        type: string
+    type: object
+  response.ProcessParams:
+    properties:
+      key:
+        type: string
+      value: {}
+    type: object
+  response.ProcessParamsResponse:
+    properties:
+      number:
+        type: string
+      params:
+        items:
+          $ref: '#/definitions/response.ProcessParams'
+        type: array
+    type: object
+  response.ProductProgress:
+    properties:
+      finishNumber:
+        type: integer
+      plcStatus:
+        type: integer
+      totalNumber:
+        type: integer
+    type: object
+  response.TaskCountdown:
+    properties:
+      countDownHour:
+        description: 鍊掕鏃� 鏃�
+        type: integer
+      countDownMinute:
+        description: 鍊掕鏃� 鍒�
+        type: integer
+      showCountDown:
+        description: 鏄惁灞曠ず鍊掕鏃�
+        type: boolean
+    type: object
+  response.TaskData:
+    properties:
+      allProcedures:
+        items:
+          type: string
+        type: array
+      canStarted:
+        description: 鏄惁鍙互寮�濮嬬敓浜�
+        type: boolean
+      channel:
+        description: 褰撳墠浠诲姟鍦ㄨ澶囩鍑犱釜閫氶亾
+        type: integer
+      currentProcedureIndex:
+        type: integer
+      order:
+        $ref: '#/definitions/model.Order'
+      procedure:
+        $ref: '#/definitions/model.Procedures'
+    type: object
+  response.TaskResponse:
+    properties:
+      channelAmount:
+        description: 閫氶亾鏁伴噺
+        type: integer
+      prompt:
+        allOf:
+        - $ref: '#/definitions/conf.Prompt'
+        description: 鎻愮ず璇�
+      taskCount:
+        description: 浠诲姟鏁伴噺
+        type: integer
+      tasks:
+        description: 浠诲姟鍒楄〃
+        items:
+          $ref: '#/definitions/response.TaskData'
+        type: array
+      workers:
+        description: 浜哄憳鍒楄〃
+        items:
+          $ref: '#/definitions/common.ProcedureWorker'
+        type: array
     type: object
 info:
   contact: {}
 paths:
-  /v1/notice/task/start:
+  /v1/config/net:
+    get:
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            allOf:
+            - $ref: '#/definitions/contextx.Response'
+            - properties:
+                data:
+                  items:
+                    $ref: '#/definitions/model.NetConfig'
+                  type: array
+              type: object
+      summary: 鑾峰彇缃戠粶閰嶇疆
+      tags:
+      - Config
+    post:
+      parameters:
+      - description: 鍙傛暟
+        in: body
+        name: object
+        required: true
+        schema:
+          $ref: '#/definitions/model.NetConfig'
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            allOf:
+            - $ref: '#/definitions/contextx.Response'
+            - properties:
+                data:
+                  items:
+                    $ref: '#/definitions/response.ProcessParams'
+                  type: array
+              type: object
+      summary: 璁剧疆缃戠粶閰嶇疆
+      tags:
+      - Config
+  /v1/config/plc:
+    get:
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            allOf:
+            - $ref: '#/definitions/contextx.Response'
+            - properties:
+                data:
+                  $ref: '#/definitions/model.DevicePlc'
+              type: object
+      summary: 鑾峰彇plc閰嶇疆
+      tags:
+      - Config
     post:
       parameters:
       - description: 鏌ヨ鍙傛暟
@@ -66,7 +532,60 @@
         name: object
         required: true
         schema:
-          $ref: '#/definitions/request.TaskInfo'
+          $ref: '#/definitions/request.UpdatePlc'
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: OK
+          schema:
+            $ref: '#/definitions/contextx.Response'
+      summary: 鏇存柊plc閰嶇疆
+      tags:
+      - Config
+  /v1/plc/productProgress:
+    post:
+      parameters:
+      - description: 鏌ヨ鍙傛暟
+        in: body
+        name: object
+        required: true
+        schema:
+          $ref: '#/definitions/request.SendProcessParams'
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            allOf:
+            - $ref: '#/definitions/contextx.Response'
+            - properties:
+                data:
+                  $ref: '#/definitions/response.ProductProgress'
+              type: object
+      summary: 鑾峰彇鐢熶骇杩涘害
+      tags:
+      - 鐢熶骇鏁伴噺
+  /v1/plc/productProgressRealTime:
+    post:
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            allOf:
+            - $ref: '#/definitions/contextx.Response'
+            - properties:
+                data:
+                  $ref: '#/definitions/response.ProductProgress'
+              type: object
+      summary: 瀹炴椂鑾峰彇鐢熶骇杩涘害
+      tags:
+      - 鐢熶骇鏁伴噺
+  /v1/plc/setProductNumber:
+    post:
       produces:
       - application/json
       responses:
@@ -74,12 +593,92 @@
           description: 鎴愬姛
           schema:
             $ref: '#/definitions/contextx.Response'
-      summary: 浠诲姟寮�鍚�氱煡
+      summary: 璁剧疆鐢熶骇鎬婚噺
       tags:
-      - Base
-  /v1/task/list:
+      - 鐢熶骇鏁伴噺
+  /v1/plcBrand/add:
+    post:
+      parameters:
+      - description: 鏌ヨ鍙傛暟
+        in: body
+        name: object
+        required: true
+        schema:
+          $ref: '#/definitions/request.AddPlcBrand'
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: OK
+          schema:
+            $ref: '#/definitions/contextx.Response'
+      summary: 娣诲姞plc鍝佺墝
+      tags:
+      - plc鍝佺墝
+  /v1/plcBrand/delete/{id}:
+    delete:
+      parameters:
+      - description: 鏌ヨ鍙傛暟
+        in: path
+        name: id
+        required: true
+        type: integer
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: OK
+          schema:
+            $ref: '#/definitions/contextx.Response'
+      summary: 鍒犻櫎plc鍝佺墝
+      tags:
+      - plc鍝佺墝
+  /v1/plcBrand/list:
+    get:
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: OK
+          schema:
+            allOf:
+            - $ref: '#/definitions/response.ListResponse'
+            - properties:
+                data:
+                  items:
+                    $ref: '#/definitions/model.PlcBrand'
+                  type: array
+              type: object
+      summary: 鑾峰彇plc鍝佺墝鍒楄〃
+      tags:
+      - plc鍝佺墝
+  /v1/plcBrand/update:
+    put:
+      parameters:
+      - description: 鏌ヨ鍙傛暟
+        in: body
+        name: object
+        required: true
+        schema:
+          $ref: '#/definitions/request.UpdatePlcBrand'
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: OK
+          schema:
+            $ref: '#/definitions/contextx.Response'
+      summary: 鏇存柊plc鍝佺墝
+      tags:
+      - plc鍝佺墝
+  /v1/processModel/list:
     get:
       parameters:
+      - description: 褰撳墠姝e湪浣跨敤鐨勫伐鑹哄弬鏁扮紪鍙�
+        in: query
+        name: number
+        required: true
+        type: string
       - description: 椤电爜
         in: query
         name: page
@@ -87,6 +686,11 @@
       - description: 姣忛〉澶у皬
         in: query
         name: pageSize
+        type: integer
+      - description: 褰撳墠鐨勫伐搴廼d
+        in: query
+        name: procedureId
+        required: true
         type: integer
       produces:
       - application/json
@@ -99,10 +703,147 @@
             - properties:
                 data:
                   items:
-                    $ref: '#/definitions/model.ScheduleTask'
+                    $ref: '#/definitions/model.ProcessModel'
                   type: array
               type: object
-      summary: 浠诲姟寮�鍚�氱煡
+      summary: 鑾峰彇宸ヨ壓妯″瀷鍒楄〃
       tags:
-      - Base
+      - 宸ヨ壓妯″瀷
+  /v1/task/countdown:
+    get:
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            allOf:
+            - $ref: '#/definitions/contextx.Response'
+            - properties:
+                data:
+                  $ref: '#/definitions/response.TaskCountdown'
+              type: object
+      summary: 鏂颁换鍔″�掕鏃�
+      tags:
+      - Task
+  /v1/task/finish/{id}:
+    put:
+      parameters:
+      - description: 宸ュ簭id
+        in: path
+        name: id
+        required: true
+        type: integer
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            $ref: '#/definitions/contextx.Response'
+      summary: 浠诲姟缁撴潫
+      tags:
+      - Task
+  /v1/task/get:
+    get:
+      parameters:
+      - description: 椤电爜
+        in: query
+        name: page
+        type: integer
+      - description: 姣忛〉澶у皬
+        in: query
+        name: pageSize
+        type: integer
+      - enum:
+        - 1
+        - 2
+        - 3
+        in: query
+        name: taskMode
+        type: integer
+        x-enum-comments:
+          TaskModeCurrent: 鏈紑濮嬬殑鍜岃繘琛屼腑鐨�
+          TaskModeLastFinished: 涓婁竴涓粨鏉熺殑
+          TaskModeUnStarted: 鏈紑濮嬬殑
+        x-enum-varnames:
+        - TaskModeUnStarted
+        - TaskModeCurrent
+        - TaskModeLastFinished
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            allOf:
+            - $ref: '#/definitions/contextx.Response'
+            - properties:
+                data:
+                  $ref: '#/definitions/response.TaskResponse'
+              type: object
+      summary: 鑾峰彇浠诲姟
+      tags:
+      - Task
+  /v1/task/sendProcessParams:
+    post:
+      parameters:
+      - description: 鏌ヨ鍙傛暟
+        in: body
+        name: object
+        required: true
+        schema:
+          $ref: '#/definitions/request.SendProcessParams'
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            $ref: '#/definitions/contextx.Response'
+      summary: 涓嬪彂宸ヨ壓鍙傛暟锛堝紑濮嬩换鍔★級
+      tags:
+      - Task
+  /v1/task/start/{id}:
+    get:
+      parameters:
+      - description: 宸ュ簭id
+        in: path
+        name: id
+        required: true
+        type: integer
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            allOf:
+            - $ref: '#/definitions/contextx.Response'
+            - properties:
+                data:
+                  $ref: '#/definitions/response.ProcessParamsResponse'
+              type: object
+      summary: 浠诲姟寮�濮嬶紙鑾峰彇宸ヨ壓鍙傛暟锛�
+      tags:
+      - Task
+  /v1/task/updateProcessParams:
+    post:
+      parameters:
+      - description: 鏌ヨ鍙傛暟
+        in: body
+        name: object
+        required: true
+        schema:
+          $ref: '#/definitions/request.SendProcessParams'
+      produces:
+      - application/json
+      responses:
+        "200":
+          description: 鎴愬姛
+          schema:
+            $ref: '#/definitions/contextx.Response'
+      summary: 鏇存柊宸ヨ壓鍙傛暟锛堣繘琛屼腑鐨勪换鍔★級
+      tags:
+      - Task
 swagger: "2.0"

--
Gitblit v1.8.0