From 523a8dd470f2a2c0ee20a7bddba2fdf0d9fc0d72 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Mon, 02 Feb 2026 14:31:23 +0800
Subject: [PATCH] feat:文档

---
 applications/task-work-order/src/views/orderView/appConfiguration/inventory/接口文档.txt |  249 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 249 insertions(+), 0 deletions(-)

diff --git "a/applications/task-work-order/src/views/orderView/appConfiguration/inventory/\346\216\245\345\217\243\346\226\207\346\241\243.txt" "b/applications/task-work-order/src/views/orderView/appConfiguration/inventory/\346\216\245\345\217\243\346\226\207\346\241\243.txt"
index e89ba3a..ba2380c 100644
--- "a/applications/task-work-order/src/views/orderView/appConfiguration/inventory/\346\216\245\345\217\243\346\226\207\346\241\243.txt"
+++ "b/applications/task-work-order/src/views/orderView/appConfiguration/inventory/\346\216\245\345\217\243\346\226\207\346\241\243.txt"
@@ -102,4 +102,253 @@
 	"msg": "",
 	"success": true
 }
+```
+
+
+## 详情
+
+
+**接口地址**:`/implement/gdImplementList/detail`
+
+
+**请求方式**:`GET`
+
+
+**请求数据类型**:`application/x-www-form-urlencoded`
+
+
+**响应数据类型**:`*/*`
+
+
+**接口描述**:<p>传入gdImplementList</p>
+
+
+
+**请求参数**:
+
+
+**请求参数**:
+
+
+| 参数名称 | 参数说明 | 请求类型    | 是否必须 | 数据类型 | schema |
+| -------- | -------- | ----- | -------- | -------- | ------ |
+|id|主键|query|true|integer(int64)||
+
+
+**响应状态**:
+
+
+| 状态码 | 说明 | schema |
+| -------- | -------- | ----- | 
+|200|OK|R«GdImplementListVO»|
+|401|Unauthorized||
+|403|Forbidden||
+|404|Not Found||
+
+
+**响应参数**:
+
+
+| 参数名称 | 参数说明 | 类型 | schema |
+| -------- | -------- | ----- |----- | 
+|code|状态码|integer(int32)|integer(int32)|
+|data|承载数据|GdImplementListVO|GdImplementListVO|
+|&emsp;&emsp;areaCode|所属区划编码|string||
+|&emsp;&emsp;areaName|所属区划名称|string||
+|&emsp;&emsp;catalogCode|目录编码|string||
+|&emsp;&emsp;id|主键id|integer(int64)||
+|&emsp;&emsp;implementCode|实施编码|string||
+|&emsp;&emsp;implementName|实施清单名称|string||
+|&emsp;&emsp;matterCode|事项编码|string||
+|&emsp;&emsp;matterName|事项名称|string||
+|&emsp;&emsp;orgCode|所属机构编码|string||
+|&emsp;&emsp;orgName|所属机构名称|string||
+|&emsp;&emsp;processDefinitionId|流程定义主键|string||
+|&emsp;&emsp;processInstanceId|流程实例主键|string||
+|msg|返回消息|string||
+|success|是否成功|boolean||
+
+
+**响应示例**:
+```javascript
+{
+	"code": 0,
+	"data": {
+		"areaCode": "",
+		"areaName": "",
+		"catalogCode": "",
+		"id": 0,
+		"implementCode": "",
+		"implementName": "",
+		"matterCode": "",
+		"matterName": "",
+		"orgCode": "",
+		"orgName": "",
+		"processDefinitionId": "",
+		"processInstanceId": ""
+	},
+	"msg": "",
+	"success": true
+}
+```
+
+
+## 新增或修改
+
+
+**接口地址**:`/implement/gdImplementList/submit`
+
+
+**请求方式**:`POST`
+
+
+**请求数据类型**:`application/json`
+
+
+**响应数据类型**:`*/*`
+
+
+**接口描述**:<p>传入gdImplementList</p>
+
+
+
+**请求示例**:
+
+
+```javascript
+{
+  "areaCode": "",
+  "areaName": "",
+  "catalogCode": "",
+  "id": 0,
+  "implementCode": "",
+  "implementName": "",
+  "matterCode": "",
+  "matterName": "",
+  "orgCode": "",
+  "orgName": "",
+  "processDefinitionId": "",
+  "processInstanceId": ""
+}
+```
+
+
+**请求参数**:
+
+
+**请求参数**:
+
+
+| 参数名称 | 参数说明 | 请求类型    | 是否必须 | 数据类型 | schema |
+| -------- | -------- | ----- | -------- | -------- | ------ |
+|gdImplementList|gdImplementList|body|true|GdImplementListDTO|GdImplementListDTO|
+|&emsp;&emsp;areaCode|所属区划编码||false|string||
+|&emsp;&emsp;areaName|所属区划名称||false|string||
+|&emsp;&emsp;catalogCode|目录编码||false|string||
+|&emsp;&emsp;id|主键id||false|integer(int64)||
+|&emsp;&emsp;implementCode|实施编码||false|string||
+|&emsp;&emsp;implementName|实施清单名称||false|string||
+|&emsp;&emsp;matterCode|事项编码||false|string||
+|&emsp;&emsp;matterName|事项名称||false|string||
+|&emsp;&emsp;orgCode|所属机构编码||false|string||
+|&emsp;&emsp;orgName|所属机构名称||false|string||
+|&emsp;&emsp;processDefinitionId|流程定义主键||false|string||
+|&emsp;&emsp;processInstanceId|流程实例主键||false|string||
+
+
+**响应状态**:
+
+
+| 状态码 | 说明 | schema |
+| -------- | -------- | ----- | 
+|200|OK|R«boolean»|
+|201|Created||
+|401|Unauthorized||
+|403|Forbidden||
+|404|Not Found||
+
+
+**响应参数**:
+
+
+| 参数名称 | 参数说明 | 类型 | schema |
+| -------- | -------- | ----- |----- | 
+|code|状态码|integer(int32)|integer(int32)|
+|data|承载数据|boolean||
+|msg|返回消息|string||
+|success|是否成功|boolean||
+
+
+**响应示例**:
+```javascript
+{
+	"code": 0,
+	"data": true,
+	"msg": "",
+	"success": true
+}
+```
+
+
+## 逻辑删除
+
+
+**接口地址**:`/implement/gdImplementList/remove`
+
+
+**请求方式**:`POST`
+
+
+**请求数据类型**:`application/json`
+
+
+**响应数据类型**:`*/*`
+
+
+**接口描述**:<p>传入ids</p>
+
+
+
+**请求参数**:
+
+
+**请求参数**:
+
+
+| 参数名称 | 参数说明 | 请求类型    | 是否必须 | 数据类型 | schema |
+| -------- | -------- | ----- | -------- | -------- | ------ |
+|ids|主键集合|query|true|string||
+
+
+**响应状态**:
+
+
+| 状态码 | 说明 | schema |
+| -------- | -------- | ----- | 
+|200|OK|R«boolean»|
+|201|Created||
+|401|Unauthorized||
+|403|Forbidden||
+|404|Not Found||
+
+
+**响应参数**:
+
+
+| 参数名称 | 参数说明 | 类型 | schema |
+| -------- | -------- | ----- |----- | 
+|code|状态码|integer(int32)|integer(int32)|
+|data|承载数据|boolean||
+|msg|返回消息|string||
+|success|是否成功|boolean||
+
+
+**响应示例**:
+```javascript
+{
+	"code": 0,
+	"data": true,
+	"msg": "",
+	"success": true
+}
 ```
\ No newline at end of file

--
Gitblit v1.9.3