Files
SecMPS/warehouse/doc/仓库管理系统接口.md
2026-05-15 23:22:48 +08:00

29742 lines
523 KiB
Markdown

---
title: VolPro.Core后台Api
language_tabs:
- shell: Shell
- http: HTTP
- javascript: JavaScript
- ruby: Ruby
- python: Python
- php: PHP
- java: Java
- go: Go
toc_footers: []
includes: []
search: true
code_clipboard: true
highlight_theme: darkula
headingLevel: 2
generator: "@tarslib/widdershins v4.0.30"
---
# VolPro.Core后台Api
这是对文档的描述。。
Base URLs:
# Authentication
* API Key (Bearer)
- Parameter Name: **Authorization**, in: header. JWT授权token前面需要加上字段Bearer与一个空格,如Bearer token
# App
## GET /api/app/checkLogin
GET /api/app/checkLogin
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/app/getAndroidVersion
GET /api/app/getAndroidVersion
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|home|query|boolean| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/app/getIOSVersion
GET /api/app/getIOSVersion
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|home|query|boolean| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Auth
## POST /api/auth/getDataViewAccessToken
POST /api/auth/getDataViewAccessToken
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|parmas|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/auth/getDataViewAccessToken
POST /api/dataview/auth/getDataViewAccessToken
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|parmas|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/auth/getDataViewLoginToken
POST /api/auth/getDataViewLoginToken
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|key|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/auth/getDataViewLoginToken
POST /api/dataview/auth/getDataViewLoginToken
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|key|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Builder
## POST /api/Builder/GetTableTree
POST /api/Builder/GetTableTree
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/CreateVuePage
POST /api/Builder/CreateVuePage
> Body 请求参数
```json
{
"table_Id": 0,
"parentId": 0,
"tableName": "string",
"tableTrueName": "string",
"columnCNName": "string",
"namespace": "string",
"folderName": "string",
"dataTableType": "string",
"editorType": "string",
"orderNo": 0,
"uploadField": "string",
"uploadMaxCount": 0,
"richText": "string",
"expressField": "string",
"dbServer": "string",
"sortName": "string",
"detailCnName": "string",
"detailName": "string",
"enable": 0,
"cnName": "string",
"searchType": 0,
"editType": 0,
"searchDropNo": "string",
"dbSql": "string",
"foreignField": "string",
"dyPage": 0,
"dyScript": "string",
"fixedSearch": 0,
"tableColumns": [
{
"table_Id": 0,
"columnId": 0,
"columnName": "string",
"columnCnName": "string",
"columnType": "string",
"tableName": "string",
"maxlength": 0,
"isNull": 0,
"isDisplay": 0,
"isKey": 0,
"columnformat": "string",
"script": "string",
"dropNo": "string",
"isImage": 0,
"sortable": 0,
"columnWidth": 0,
"searchRowNo": 0,
"searchColNo": 0,
"searchType": "string",
"editRowNo": 0,
"editColNo": 0,
"editType": "string",
"colSize": 0.1,
"searchColSize": 0.1,
"isReadDataset": 0,
"enable": 0,
"apiInPut": 0,
"apiIsNull": 0,
"apiOutPut": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"orderNo": 0,
"isColumnData": 0
}
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|vuePath|query|string| 否 |none|
|tableId|query|integer(int32)| 否 |none|
|table|query|string| 否 |none|
|body|body|[Sys_TableInfo](#schemasys_tableinfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/loadOptions
POST /api/Builder/loadOptions
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|tableId|query|integer(int32)| 否 |none|
|table|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/CreateModel
POST /api/Builder/CreateModel
> Body 请求参数
```json
{
"table_Id": 0,
"parentId": 0,
"tableName": "string",
"tableTrueName": "string",
"columnCNName": "string",
"namespace": "string",
"folderName": "string",
"dataTableType": "string",
"editorType": "string",
"orderNo": 0,
"uploadField": "string",
"uploadMaxCount": 0,
"richText": "string",
"expressField": "string",
"dbServer": "string",
"sortName": "string",
"detailCnName": "string",
"detailName": "string",
"enable": 0,
"cnName": "string",
"searchType": 0,
"editType": 0,
"searchDropNo": "string",
"dbSql": "string",
"foreignField": "string",
"dyPage": 0,
"dyScript": "string",
"fixedSearch": 0,
"tableColumns": [
{
"table_Id": 0,
"columnId": 0,
"columnName": "string",
"columnCnName": "string",
"columnType": "string",
"tableName": "string",
"maxlength": 0,
"isNull": 0,
"isDisplay": 0,
"isKey": 0,
"columnformat": "string",
"script": "string",
"dropNo": "string",
"isImage": 0,
"sortable": 0,
"columnWidth": 0,
"searchRowNo": 0,
"searchColNo": 0,
"searchType": "string",
"editRowNo": 0,
"editColNo": 0,
"editType": "string",
"colSize": 0.1,
"searchColSize": 0.1,
"isReadDataset": 0,
"enable": 0,
"apiInPut": 0,
"apiIsNull": 0,
"apiOutPut": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"orderNo": 0,
"isColumnData": 0
}
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_TableInfo](#schemasys_tableinfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/Save
POST /api/Builder/Save
> Body 请求参数
```json
{
"table_Id": 0,
"parentId": 0,
"tableName": "string",
"tableTrueName": "string",
"columnCNName": "string",
"namespace": "string",
"folderName": "string",
"dataTableType": "string",
"editorType": "string",
"orderNo": 0,
"uploadField": "string",
"uploadMaxCount": 0,
"richText": "string",
"expressField": "string",
"dbServer": "string",
"sortName": "string",
"detailCnName": "string",
"detailName": "string",
"enable": 0,
"cnName": "string",
"searchType": 0,
"editType": 0,
"searchDropNo": "string",
"dbSql": "string",
"foreignField": "string",
"dyPage": 0,
"dyScript": "string",
"fixedSearch": 0,
"tableColumns": [
{
"table_Id": 0,
"columnId": 0,
"columnName": "string",
"columnCnName": "string",
"columnType": "string",
"tableName": "string",
"maxlength": 0,
"isNull": 0,
"isDisplay": 0,
"isKey": 0,
"columnformat": "string",
"script": "string",
"dropNo": "string",
"isImage": 0,
"sortable": 0,
"columnWidth": 0,
"searchRowNo": 0,
"searchColNo": 0,
"searchType": "string",
"editRowNo": 0,
"editColNo": 0,
"editType": "string",
"colSize": 0.1,
"searchColSize": 0.1,
"isReadDataset": 0,
"enable": 0,
"apiInPut": 0,
"apiIsNull": 0,
"apiOutPut": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"orderNo": 0,
"isColumnData": 0
}
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_TableInfo](#schemasys_tableinfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/CreateServices
POST /api/Builder/CreateServices
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|tableName|query|string| 否 |none|
|nameSpace|query|string| 否 |none|
|foldername|query|string| 否 |none|
|partial|query|boolean| 否 |none|
|api|query|boolean| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/LoadTableInfo
POST /api/Builder/LoadTableInfo
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|parentId|query|integer(int32)| 否 |none|
|tableName|query|string| 否 |none|
|columnCNName|query|string| 否 |none|
|nameSpace|query|string| 否 |none|
|foldername|query|string| 否 |none|
|table_Id|query|integer(int32)| 否 |none|
|isTreeLoad|query|boolean| 否 |none|
|dbServer|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/delTree
POST /api/Builder/delTree
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|table_Id|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/syncTable
POST /api/Builder/syncTable
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|tableName|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/getDyTable
POST /api/Builder/getDyTable
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Builder/getDyScript
POST /api/Builder/getDyScript
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|table|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Dashboard
## GET /api/dashboard/getGridData
GET /api/dashboard/getGridData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|date1|query|string(date-time)| 否 |none|
|date2|query|string(date-time)| 否 |none|
|filterType|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dashboard/getGridData
POST /api/dashboard/getGridData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|date1|query|string(date-time)| 否 |none|
|date2|query|string(date-time)| 否 |none|
|filterType|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# DataViewProject
## GET /api/dataview/project/list
GET /api/dataview/project/list
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|page|query|integer(int32)| 否 |none|
|limit|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/project/create
POST /api/dataview/project/create
> Body 请求参数
```json
{
"id": 0,
"projectName": "string",
"state": 0,
"isDel": 0,
"indexImage": "string",
"remarks": "string",
"orderNo": 0,
"createId": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"content": "string",
"dbServiceId": "fdbe9e04-7d8b-48e1-a674-550509a8e5d0"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[DataViewProjects](#schemadataviewprojects)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/dataview/project/getData
GET /api/dataview/project/getData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|projectId|query|integer(int64)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/project/save/data
POST /api/dataview/project/save/data
> Body 请求参数
```yaml
formdata: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» formdata|body|[[StringStringValuesKeyValuePair](#schemastringstringvalueskeyvaluepair)]| 否 |none|
|»» key|body|string¦null| 否 |none|
|»» value|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/project/edit
POST /api/dataview/project/edit
> Body 请求参数
```json
{
"id": 0,
"projectName": "string",
"state": 0,
"isDel": 0,
"indexImage": "string",
"remarks": "string",
"orderNo": 0,
"createId": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"content": "string",
"dbServiceId": "fdbe9e04-7d8b-48e1-a674-550509a8e5d0"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[DataViewProjects](#schemadataviewprojects)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/project/publish
POST /api/dataview/project/publish
> Body 请求参数
```json
{
"id": 0,
"projectName": "string",
"state": 0,
"isDel": 0,
"indexImage": "string",
"remarks": "string",
"orderNo": 0,
"createId": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"content": "string",
"dbServiceId": "fdbe9e04-7d8b-48e1-a674-550509a8e5d0"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[DataViewProjects](#schemadataviewprojects)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## PUT /api/dataview/project/publish
PUT /api/dataview/project/publish
> Body 请求参数
```json
{
"id": 0,
"projectName": "string",
"state": 0,
"isDel": 0,
"indexImage": "string",
"remarks": "string",
"orderNo": 0,
"createId": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"content": "string",
"dbServiceId": "fdbe9e04-7d8b-48e1-a674-550509a8e5d0"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[DataViewProjects](#schemadataviewprojects)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/project/upload
POST /api/dataview/project/upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## DELETE /api/dataview/project/delete
DELETE /api/dataview/project/delete
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|ids|query|integer(int64)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/dataview/project/delete
GET /api/dataview/project/delete
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|ids|query|integer(int64)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/project/delete
POST /api/dataview/project/delete
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|ids|query|integer(int64)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/project/updateOrderNo
POST /api/dataview/project/updateOrderNo
> Body 请求参数
```json
{
"id": 0,
"projectName": "string",
"state": 0,
"isDel": 0,
"indexImage": "string",
"remarks": "string",
"orderNo": 0,
"createId": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"content": "string",
"dbServiceId": "fdbe9e04-7d8b-48e1-a674-550509a8e5d0"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[DataViewProjects](#schemadataviewprojects)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/project/copy
POST /api/dataview/project/copy
> Body 请求参数
```json
{
"id": 0,
"projectName": "string",
"state": 0,
"isDel": 0,
"indexImage": "string",
"remarks": "string",
"orderNo": 0,
"createId": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"content": "string",
"dbServiceId": "fdbe9e04-7d8b-48e1-a674-550509a8e5d0"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[DataViewProjects](#schemadataviewprojects)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# DataViewSys
## POST /api/dataview/sys/login
POST /api/dataview/sys/login
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/dataview/sys/getVierificationCode
GET /api/dataview/sys/getVierificationCode
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/dataview/sys/logout
GET /api/dataview/sys/logout
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/dataview/sys/getOssInfo
GET /api/dataview/sys/getOssInfo
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# DataViewTest
## GET /api/dataview/test/Text1
GET /api/dataview/test/Text1
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/dataview/test/Text1
POST /api/dataview/test/Text1
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/dataview/test/data1
GET /api/dataview/test/data1
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# FormCollectionObject
## POST /api/FormCollectionObject/GetPageData
POST /api/FormCollectionObject/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/GetDetailPage
POST /api/FormCollectionObject/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/Upload
POST /api/FormCollectionObject/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/FormCollectionObject/DownLoadTemplate
GET /api/FormCollectionObject/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/Import
POST /api/FormCollectionObject/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/Export
POST /api/FormCollectionObject/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/Del
POST /api/FormCollectionObject/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/Audit
POST /api/FormCollectionObject/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/antiAudit
POST /api/FormCollectionObject/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/Add
POST /api/FormCollectionObject/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormCollectionObject/Update
POST /api/FormCollectionObject/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# FormDesignOptions
## GET /api/FormDesignOptions/getFormOptions
GET /api/FormDesignOptions/getFormOptions
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|id|query|string(uuid)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/submit
POST /api/FormDesignOptions/submit
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/FormDesignOptions/getList
GET /api/FormDesignOptions/getList
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/GetPageData
POST /api/FormDesignOptions/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/GetDetailPage
POST /api/FormDesignOptions/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/Upload
POST /api/FormDesignOptions/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/FormDesignOptions/DownLoadTemplate
GET /api/FormDesignOptions/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/Import
POST /api/FormDesignOptions/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/Export
POST /api/FormDesignOptions/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/Del
POST /api/FormDesignOptions/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/Audit
POST /api/FormDesignOptions/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/antiAudit
POST /api/FormDesignOptions/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/Add
POST /api/FormDesignOptions/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/FormDesignOptions/Update
POST /api/FormDesignOptions/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# historyAlarm
## POST /api/historyAlarm/GetPageData
POST /api/historyAlarm/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/GetDetailPage
POST /api/historyAlarm/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/Upload
POST /api/historyAlarm/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/historyAlarm/DownLoadTemplate
GET /api/historyAlarm/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/Import
POST /api/historyAlarm/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/Export
POST /api/historyAlarm/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/Del
POST /api/historyAlarm/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/Audit
POST /api/historyAlarm/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/antiAudit
POST /api/historyAlarm/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/Add
POST /api/historyAlarm/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/historyAlarm/Update
POST /api/historyAlarm/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# ObjectActionValidatorExample
## POST /validatorExample/test1
POST /validatorExample/test1
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userName|query|string| 否 |none|
|phoneNo|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /validatorExample/test1
GET /validatorExample/test1
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userName|query|string| 否 |none|
|phoneNo|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /validatorExample/test2
POST /validatorExample/test2
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userName|query|string| 否 |none|
|phoneNo|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /validatorExample/test2
GET /validatorExample/test2
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userName|query|string| 否 |none|
|phoneNo|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /validatorExample/test3
POST /validatorExample/test3
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|local|query|string| 否 |none|
|qty|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /validatorExample/test3
GET /validatorExample/test3
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|local|query|string| 否 |none|
|qty|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /validatorExample/Test4
POST /validatorExample/Test4
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /validatorExample/Test4
GET /validatorExample/Test4
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /validatorExample/Test5
POST /validatorExample/Test5
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /validatorExample/Test5
GET /validatorExample/Test5
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /validatorExample/Test6
POST /validatorExample/Test6
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|phoneNo|query|string| 否 |none|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /validatorExample/Test6
GET /validatorExample/Test6
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|phoneNo|query|string| 否 |none|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# ReadDBTableName
## GET /api/ReadDBTableName/GetAlertMessage
GET /api/ReadDBTableName/GetAlertMessage
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetFirstVideoAddress
GET /api/ReadDBTableName/GetFirstVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetSecondVideoAddress
GET /api/ReadDBTableName/GetSecondVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetThirdVideoAddress
GET /api/ReadDBTableName/GetThirdVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetFourthVideoAddress
GET /api/ReadDBTableName/GetFourthVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetFifthVideoAddress
GET /api/ReadDBTableName/GetFifthVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetSixthVideoAddress
GET /api/ReadDBTableName/GetSixthVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetSeventhVideoAddress
GET /api/ReadDBTableName/GetSeventhVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetEighthVideoAddress
GET /api/ReadDBTableName/GetEighthVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetNinthVideoAddress
GET /api/ReadDBTableName/GetNinthVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/GetTenthVideoAddress
GET /api/ReadDBTableName/GetTenthVideoAddress
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|iframeid|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/GetPageData
POST /api/ReadDBTableName/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/GetDetailPage
POST /api/ReadDBTableName/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/Upload
POST /api/ReadDBTableName/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/ReadDBTableName/DownLoadTemplate
GET /api/ReadDBTableName/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/Import
POST /api/ReadDBTableName/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/Export
POST /api/ReadDBTableName/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/Del
POST /api/ReadDBTableName/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/Audit
POST /api/ReadDBTableName/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/antiAudit
POST /api/ReadDBTableName/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/Add
POST /api/ReadDBTableName/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/ReadDBTableName/Update
POST /api/ReadDBTableName/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Report
## GET /api/report/getTemplateData
GET /api/report/getTemplateData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|code|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/report/getTemplateData
POST /api/report/getTemplateData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|code|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# ReportBase
## GET /getTemplateData
GET /getTemplateData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|code|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /getTemplateData
POST /getTemplateData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|code|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# SignalRUser
## GET /api/signalRUser/loginout
GET /api/signalRUser/loginout
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userName|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_CodeRule
## POST /api/Sys_CodeRule/getTableInfo
POST /api/Sys_CodeRule/getTableInfo
> Body 请求参数
```json
[
"string"
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/getFields
POST /api/Sys_CodeRule/getFields
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|table|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_CodeRule/getFields
GET /api/Sys_CodeRule/getFields
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|table|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/GetPageData
POST /api/Sys_CodeRule/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/GetDetailPage
POST /api/Sys_CodeRule/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/Upload
POST /api/Sys_CodeRule/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_CodeRule/DownLoadTemplate
GET /api/Sys_CodeRule/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/Import
POST /api/Sys_CodeRule/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/Export
POST /api/Sys_CodeRule/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/Del
POST /api/Sys_CodeRule/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/Audit
POST /api/Sys_CodeRule/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/antiAudit
POST /api/Sys_CodeRule/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/Add
POST /api/Sys_CodeRule/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_CodeRule/Update
POST /api/Sys_CodeRule/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Dashboard
## GET /api/Sys_Dashboard/getLayoutData
GET /api/Sys_Dashboard/getLayoutData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|id|query|string(uuid)| 否 |none|
|view|query|boolean| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/getLayoutData
POST /api/Sys_Dashboard/getLayoutData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|id|query|string(uuid)| 否 |none|
|view|query|boolean| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/getItemData
POST /api/Sys_Dashboard/getItemData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|id|query|string(uuid)| 否 |none|
|itemId|query|string| 否 |none|
|date1|query|string(date-time)| 否 |none|
|date2|query|string(date-time)| 否 |none|
|filterType|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/execSql
POST /api/Sys_Dashboard/execSql
> Body 请求参数
```json
{
"property1": "string",
"property2": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
**additionalProperties**|body|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/GetPageData
POST /api/Sys_Dashboard/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/GetDetailPage
POST /api/Sys_Dashboard/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/Upload
POST /api/Sys_Dashboard/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Dashboard/DownLoadTemplate
GET /api/Sys_Dashboard/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/Import
POST /api/Sys_Dashboard/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/Export
POST /api/Sys_Dashboard/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/Del
POST /api/Sys_Dashboard/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/Audit
POST /api/Sys_Dashboard/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/antiAudit
POST /api/Sys_Dashboard/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/Add
POST /api/Sys_Dashboard/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dashboard/Update
POST /api/Sys_Dashboard/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_DbService
## POST /api/Sys_DbService/GetPageData
POST /api/Sys_DbService/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DbService/GetDetailPage
POST /api/Sys_DbService/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DbService/Upload
POST /api/Sys_DbService/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_DbService/DownLoadTemplate
GET /api/Sys_DbService/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DbService/Import
POST /api/Sys_DbService/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DbService/Del
POST /api/Sys_DbService/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DbService/Audit
POST /api/Sys_DbService/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DbService/antiAudit
POST /api/Sys_DbService/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Department
## POST /api/Sys_Department/GetPageData
POST /api/Sys_Department/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/getTreeTableRootData
POST /api/Sys_Department/getTreeTableRootData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/getTreeTableChildrenData
POST /api/Sys_Department/getTreeTableChildrenData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|departmentId|query|string(uuid)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/GetDetailPage
POST /api/Sys_Department/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/Upload
POST /api/Sys_Department/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Department/DownLoadTemplate
GET /api/Sys_Department/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/Import
POST /api/Sys_Department/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/Export
POST /api/Sys_Department/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/Del
POST /api/Sys_Department/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/Audit
POST /api/Sys_Department/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/antiAudit
POST /api/Sys_Department/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/Add
POST /api/Sys_Department/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Department/Update
POST /api/Sys_Department/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Dictionary
## POST /api/Sys_Dictionary/GetVueDictionary
POST /api/Sys_Dictionary/GetVueDictionary
> Body 请求参数
```json
[
"string"
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/getTableDictionary
POST /api/Sys_Dictionary/getTableDictionary
> Body 请求参数
```json
{
"property1": [
null
],
"property2": [
null
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
**additionalProperties**|body|[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/getSearchDictionary
POST /api/Sys_Dictionary/getSearchDictionary
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|dicNo|query|string| 否 |none|
|value|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/getRemoteDefaultKeyValue
POST /api/Sys_Dictionary/getRemoteDefaultKeyValue
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|dicNo|query|string| 否 |none|
|key|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/GetBuilderDictionary
POST /api/Sys_Dictionary/GetBuilderDictionary
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/GetPageData
POST /api/Sys_Dictionary/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/GetDetailPage
POST /api/Sys_Dictionary/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/Upload
POST /api/Sys_Dictionary/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Dictionary/DownLoadTemplate
GET /api/Sys_Dictionary/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/Import
POST /api/Sys_Dictionary/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/Export
POST /api/Sys_Dictionary/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/Del
POST /api/Sys_Dictionary/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/Audit
POST /api/Sys_Dictionary/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/antiAudit
POST /api/Sys_Dictionary/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/Add
POST /api/Sys_Dictionary/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Dictionary/Update
POST /api/Sys_Dictionary/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_DictionaryList
## POST /api/Sys_DictionaryList/Export
POST /api/Sys_DictionaryList/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/Import
POST /api/Sys_DictionaryList/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_DictionaryList/DownLoadTemplate
GET /api/Sys_DictionaryList/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/GetPageData
POST /api/Sys_DictionaryList/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/GetDetailPage
POST /api/Sys_DictionaryList/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/Upload
POST /api/Sys_DictionaryList/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/Del
POST /api/Sys_DictionaryList/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/Audit
POST /api/Sys_DictionaryList/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/antiAudit
POST /api/Sys_DictionaryList/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/Add
POST /api/Sys_DictionaryList/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_DictionaryList/Update
POST /api/Sys_DictionaryList/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Group
## POST /api/Sys_Group/GetPageData
POST /api/Sys_Group/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Group/GetDetailPage
POST /api/Sys_Group/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Group/Upload
POST /api/Sys_Group/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Group/DownLoadTemplate
GET /api/Sys_Group/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Group/Import
POST /api/Sys_Group/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Group/Del
POST /api/Sys_Group/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Group/Audit
POST /api/Sys_Group/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Group/antiAudit
POST /api/Sys_Group/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Language
## GET /api/Sys_Language/createLanguagePack
GET /api/Sys_Language/createLanguagePack
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/GetPageData
POST /api/Sys_Language/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/GetDetailPage
POST /api/Sys_Language/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/Upload
POST /api/Sys_Language/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Language/DownLoadTemplate
GET /api/Sys_Language/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/Import
POST /api/Sys_Language/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/Export
POST /api/Sys_Language/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/Del
POST /api/Sys_Language/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/Audit
POST /api/Sys_Language/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/antiAudit
POST /api/Sys_Language/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/Add
POST /api/Sys_Language/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Language/Update
POST /api/Sys_Language/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Log
## POST /api/Sys_Log/GetPageData
POST /api/Sys_Log/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/GetDetailPage
POST /api/Sys_Log/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/Upload
POST /api/Sys_Log/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Log/DownLoadTemplate
GET /api/Sys_Log/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/Import
POST /api/Sys_Log/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/Export
POST /api/Sys_Log/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/Del
POST /api/Sys_Log/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/Audit
POST /api/Sys_Log/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/antiAudit
POST /api/Sys_Log/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/Add
POST /api/Sys_Log/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Log/Update
POST /api/Sys_Log/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Menu
## GET /api/menu/getTreeMenu
GET /api/menu/getTreeMenu
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/getTreeMenu
POST /api/menu/getTreeMenu
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/getMenu
POST /api/menu/getMenu
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/getTreeItem
POST /api/menu/getTreeItem
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|menuId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/save
POST /api/menu/save
> Body 请求参数
```json
{
"menu_Id": 0,
"parentId": 0,
"menuName": "string",
"tableName": "string",
"url": "string",
"auth": "string",
"authData": 0,
"linkType": 0,
"description": "string",
"icon": "string",
"orderNo": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"enable": 0,
"menuType": 0,
"actions": [
{
"action_Id": 0,
"menu_Id": 0,
"text": "string",
"value": "string"
}
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_Menu](#schemasys_menu)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/delMenu
POST /api/menu/delMenu
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|menuId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/GetPageData
POST /api/menu/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/GetDetailPage
POST /api/menu/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/Upload
POST /api/menu/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/menu/DownLoadTemplate
GET /api/menu/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/Import
POST /api/menu/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/Export
POST /api/menu/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/Del
POST /api/menu/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/Audit
POST /api/menu/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/antiAudit
POST /api/menu/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/Add
POST /api/menu/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/menu/Update
POST /api/menu/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Notification
## POST /api/Sys_Notification/send
POST /api/Sys_Notification/send
> Body 请求参数
```json
{
"notificationId": "2d591c23-85b1-4e8c-a6bd-74d89f8955c5",
"notificationTemplateId": "3528f075-d157-44e3-9447-167c415e2911",
"notificationTitle": "string",
"notificationCode": "string",
"businessFunction": "string",
"tableName": "string",
"tableKey": "string",
"notificationType": "string",
"notificationLevel": "string",
"targetObjectType": "string",
"targetObjectValue": "string",
"targetObjectText": "string",
"publishStatus": 0,
"linkUrl": "string",
"linkType": "string",
"isFieldTemplate": 0,
"remark": "string",
"notificationContent": "string",
"enable": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_Notification](#schemasys_notification)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/getList
POST /api/Sys_Notification/getList
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/getUnreadList
POST /api/Sys_Notification/getUnreadList
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/getAuditList
POST /api/Sys_Notification/getAuditList
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Notification/read
GET /api/Sys_Notification/read
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|id|query|string(uuid)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/GetPageData
POST /api/Sys_Notification/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/GetDetailPage
POST /api/Sys_Notification/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/Upload
POST /api/Sys_Notification/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Notification/DownLoadTemplate
GET /api/Sys_Notification/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/Import
POST /api/Sys_Notification/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/Export
POST /api/Sys_Notification/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/Del
POST /api/Sys_Notification/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/Audit
POST /api/Sys_Notification/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/antiAudit
POST /api/Sys_Notification/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/Add
POST /api/Sys_Notification/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Notification/Update
POST /api/Sys_Notification/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_NotificationLog
## POST /api/Sys_NotificationLog/GetPageData
POST /api/Sys_NotificationLog/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/GetDetailPage
POST /api/Sys_NotificationLog/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/Upload
POST /api/Sys_NotificationLog/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_NotificationLog/DownLoadTemplate
GET /api/Sys_NotificationLog/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/Import
POST /api/Sys_NotificationLog/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/Export
POST /api/Sys_NotificationLog/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/Del
POST /api/Sys_NotificationLog/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/Audit
POST /api/Sys_NotificationLog/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/antiAudit
POST /api/Sys_NotificationLog/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/Add
POST /api/Sys_NotificationLog/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationLog/Update
POST /api/Sys_NotificationLog/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_NotificationTemplate
## POST /api/Sys_NotificationTemplate/GetPageData
POST /api/Sys_NotificationTemplate/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/GetDetailPage
POST /api/Sys_NotificationTemplate/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/Upload
POST /api/Sys_NotificationTemplate/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_NotificationTemplate/DownLoadTemplate
GET /api/Sys_NotificationTemplate/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/Import
POST /api/Sys_NotificationTemplate/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/Export
POST /api/Sys_NotificationTemplate/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/Del
POST /api/Sys_NotificationTemplate/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/Audit
POST /api/Sys_NotificationTemplate/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/antiAudit
POST /api/Sys_NotificationTemplate/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/Add
POST /api/Sys_NotificationTemplate/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_NotificationTemplate/Update
POST /api/Sys_NotificationTemplate/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Post
## POST /api/Sys_Post/GetPageData
POST /api/Sys_Post/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/GetDetailPage
POST /api/Sys_Post/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/Upload
POST /api/Sys_Post/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Post/DownLoadTemplate
GET /api/Sys_Post/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/Import
POST /api/Sys_Post/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/Export
POST /api/Sys_Post/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/Del
POST /api/Sys_Post/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/Audit
POST /api/Sys_Post/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/antiAudit
POST /api/Sys_Post/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/Add
POST /api/Sys_Post/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Post/Update
POST /api/Sys_Post/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_PrintOptions
## GET /api/Sys_PrintOptions/getSelect
GET /api/Sys_PrintOptions/getSelect
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_PrintOptions/getPrintFields
GET /api/Sys_PrintOptions/getPrintFields
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|table|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_PrintOptions/getPrintTemplateName
GET /api/Sys_PrintOptions/getPrintTemplateName
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|table|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_PrintOptions/getPrintDetail
GET /api/Sys_PrintOptions/getPrintDetail
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|id|query|string(uuid)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/getPrintData
POST /api/Sys_PrintOptions/getPrintData
> Body 请求参数
```json
{
"ids": [
null
],
"templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
"templateName": "string",
"table": "string",
"batchMainAndDetail": true,
"batchMain": true,
"detail": true,
"options": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PrintQuery](#schemaprintquery)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/GetPageData
POST /api/Sys_PrintOptions/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/GetDetailPage
POST /api/Sys_PrintOptions/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/Upload
POST /api/Sys_PrintOptions/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_PrintOptions/DownLoadTemplate
GET /api/Sys_PrintOptions/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/Import
POST /api/Sys_PrintOptions/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/Export
POST /api/Sys_PrintOptions/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/Del
POST /api/Sys_PrintOptions/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/Audit
POST /api/Sys_PrintOptions/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/antiAudit
POST /api/Sys_PrintOptions/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/Add
POST /api/Sys_PrintOptions/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_PrintOptions/Update
POST /api/Sys_PrintOptions/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_QuartzLog
## POST /api/Sys_QuartzLog/GetPageData
POST /api/Sys_QuartzLog/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/GetDetailPage
POST /api/Sys_QuartzLog/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/Upload
POST /api/Sys_QuartzLog/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_QuartzLog/DownLoadTemplate
GET /api/Sys_QuartzLog/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/Import
POST /api/Sys_QuartzLog/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/Export
POST /api/Sys_QuartzLog/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/Del
POST /api/Sys_QuartzLog/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/Audit
POST /api/Sys_QuartzLog/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/antiAudit
POST /api/Sys_QuartzLog/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/Add
POST /api/Sys_QuartzLog/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzLog/Update
POST /api/Sys_QuartzLog/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_QuartzOptions
## GET /api/Sys_QuartzOptions/test
GET /api/Sys_QuartzOptions/test
> Body 请求参数
```json
{
"property1": "string",
"property2": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|val|query|string| 否 |none|
|body|body|object| 否 |none|
**additionalProperties**|body|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/test
POST /api/Sys_QuartzOptions/test
> Body 请求参数
```json
{
"property1": "string",
"property2": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|val|query|string| 否 |none|
|body|body|object| 否 |none|
**additionalProperties**|body|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_QuartzOptions/taskTest
GET /api/Sys_QuartzOptions/taskTest
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/taskTest
POST /api/Sys_QuartzOptions/taskTest
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/run
POST /api/Sys_QuartzOptions/run
> Body 请求参数
```json
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"taskName": "string",
"groupName": "string",
"method": "string",
"timeOut": 0,
"cronExpression": "string",
"apiUrl": "string",
"postData": "string",
"authKey": "string",
"authValue": "string",
"describe": "string",
"lastRunTime": "2019-08-24T14:15:22Z",
"status": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_QuartzOptions](#schemasys_quartzoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/start
POST /api/Sys_QuartzOptions/start
> Body 请求参数
```json
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"taskName": "string",
"groupName": "string",
"method": "string",
"timeOut": 0,
"cronExpression": "string",
"apiUrl": "string",
"postData": "string",
"authKey": "string",
"authValue": "string",
"describe": "string",
"lastRunTime": "2019-08-24T14:15:22Z",
"status": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_QuartzOptions](#schemasys_quartzoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/pause
POST /api/Sys_QuartzOptions/pause
> Body 请求参数
```json
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"taskName": "string",
"groupName": "string",
"method": "string",
"timeOut": 0,
"cronExpression": "string",
"apiUrl": "string",
"postData": "string",
"authKey": "string",
"authValue": "string",
"describe": "string",
"lastRunTime": "2019-08-24T14:15:22Z",
"status": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_QuartzOptions](#schemasys_quartzoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/GetPageData
POST /api/Sys_QuartzOptions/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/GetDetailPage
POST /api/Sys_QuartzOptions/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/Upload
POST /api/Sys_QuartzOptions/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_QuartzOptions/DownLoadTemplate
GET /api/Sys_QuartzOptions/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/Import
POST /api/Sys_QuartzOptions/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/Export
POST /api/Sys_QuartzOptions/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/Del
POST /api/Sys_QuartzOptions/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/Audit
POST /api/Sys_QuartzOptions/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/antiAudit
POST /api/Sys_QuartzOptions/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/Add
POST /api/Sys_QuartzOptions/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_QuartzOptions/Update
POST /api/Sys_QuartzOptions/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Region
## GET /api/Sys_Region/getList
GET /api/Sys_Region/getList
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|code|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Region/getMapList
GET /api/Sys_Region/getMapList
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/GetPageData
POST /api/Sys_Region/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/GetDetailPage
POST /api/Sys_Region/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/Upload
POST /api/Sys_Region/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Region/DownLoadTemplate
GET /api/Sys_Region/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/Import
POST /api/Sys_Region/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/Export
POST /api/Sys_Region/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/Del
POST /api/Sys_Region/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/Audit
POST /api/Sys_Region/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/antiAudit
POST /api/Sys_Region/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/Add
POST /api/Sys_Region/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Region/Update
POST /api/Sys_Region/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_ReportOptions
## POST /api/Sys_ReportOptions/GetPageData
POST /api/Sys_ReportOptions/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/GetDetailPage
POST /api/Sys_ReportOptions/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/Upload
POST /api/Sys_ReportOptions/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_ReportOptions/DownLoadTemplate
GET /api/Sys_ReportOptions/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/Import
POST /api/Sys_ReportOptions/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/Export
POST /api/Sys_ReportOptions/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/Del
POST /api/Sys_ReportOptions/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/Audit
POST /api/Sys_ReportOptions/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/antiAudit
POST /api/Sys_ReportOptions/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/Add
POST /api/Sys_ReportOptions/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_ReportOptions/Update
POST /api/Sys_ReportOptions/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_Role
## POST /api/role/getCurrentTreePermission
POST /api/role/getCurrentTreePermission
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/getCurrentTreePermission
POST /api/Sys_Role/getCurrentTreePermission
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/getUserTreePermission
POST /api/role/getUserTreePermission
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|roleId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/getUserTreePermission
POST /api/Sys_Role/getUserTreePermission
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|roleId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/savePermission
POST /api/role/savePermission
> Body 请求参数
```json
[
{
"id": 0,
"pid": 0,
"text": "string",
"isApp": true,
"actions": [
{
"action_Id": 0,
"menu_Id": 0,
"text": "string",
"value": "string"
}
],
"authMenuData": "string"
}
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|roleId|query|integer(int32)| 否 |none|
|body|body|[UserPermissions](#schemauserpermissions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/savePermission
POST /api/Sys_Role/savePermission
> Body 请求参数
```json
[
{
"id": 0,
"pid": 0,
"text": "string",
"isApp": true,
"actions": [
{
"action_Id": 0,
"menu_Id": 0,
"text": "string",
"value": "string"
}
],
"authMenuData": "string"
}
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|roleId|query|integer(int32)| 否 |none|
|body|body|[UserPermissions](#schemauserpermissions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/getUserChildRoles
POST /api/role/getUserChildRoles
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/getUserChildRoles
POST /api/Sys_Role/getUserChildRoles
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/GetPageData
POST /api/role/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/GetPageData
POST /api/Sys_Role/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/getTreeTableRootData
POST /api/role/getTreeTableRootData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/getTreeTableRootData
POST /api/Sys_Role/getTreeTableRootData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/getTreeTableChildrenData
POST /api/role/getTreeTableChildrenData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|roleId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/getTreeTableChildrenData
POST /api/Sys_Role/getTreeTableChildrenData
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|roleId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/role/getAuthFields
GET /api/role/getAuthFields
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|menuId|query|integer(int32)| 否 |none|
|roleId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Role/getAuthFields
GET /api/Sys_Role/getAuthFields
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|menuId|query|integer(int32)| 否 |none|
|roleId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/saveAuthFields
POST /api/role/saveAuthFields
> Body 请求参数
```json
[
"string"
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|menuId|query|integer(int32)| 否 |none|
|roleId|query|integer(int32)| 否 |none|
|body|body|array[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/saveAuthFields
POST /api/Sys_Role/saveAuthFields
> Body 请求参数
```json
[
"string"
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|menuId|query|integer(int32)| 否 |none|
|roleId|query|integer(int32)| 否 |none|
|body|body|array[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/getFields
POST /api/role/getFields
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|menuId|query|integer(int32)| 否 |none|
|roleId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/getFields
POST /api/Sys_Role/getFields
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|menuId|query|integer(int32)| 否 |none|
|roleId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/GetDetailPage
POST /api/role/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/GetDetailPage
POST /api/Sys_Role/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/Upload
POST /api/role/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/Upload
POST /api/Sys_Role/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/role/DownLoadTemplate
GET /api/role/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_Role/DownLoadTemplate
GET /api/Sys_Role/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/Import
POST /api/role/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/Import
POST /api/Sys_Role/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/Export
POST /api/role/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/Export
POST /api/Sys_Role/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/Del
POST /api/role/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/Del
POST /api/Sys_Role/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/Audit
POST /api/role/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/Audit
POST /api/Sys_Role/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/antiAudit
POST /api/role/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/antiAudit
POST /api/Sys_Role/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/Add
POST /api/role/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/Add
POST /api/Sys_Role/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/role/Update
POST /api/role/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_Role/Update
POST /api/Sys_Role/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_User
## POST /api/User/GetUserNumber
POST /api/User/GetUserNumber
> 返回示例
> 200 Response
```json
0
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|integer|
## POST /api/Sys_User/GetUserNumber
POST /api/Sys_User/GetUserNumber
> 返回示例
> 200 Response
```json
0
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|integer|
## POST /api/User/GetUserList
POST /api/User/GetUserList
> 返回示例
> 200 Response
```json
[
{
"isOnline": 0,
"user_Id": 0,
"userName": "string",
"userTrueName": "string",
"gender": 0,
"headImageUrl": "string",
"role_Id": 0,
"email": "string",
"token": "string",
"userPwd": "string",
"createDate": "2019-08-24T14:15:22Z",
"phoneNo": "string",
"createID": 0,
"creator": "string",
"enable": 0,
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"lastLoginDate": "2019-08-24T14:15:22Z",
"lastModifyPwdDate": "2019-08-24T14:15:22Z",
"remark": "string",
"orderNo": 0,
"deptIds": "string",
"roleIds": "string",
"postId": "string"
}
]
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|Inline|
### 返回数据结构
状态码 **200**
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|*anonymous*|[[Sys_User](#schemasys_user)]|false|none||none|
|» isOnline|integer(int32)|false|none||none|
|» user_Id|integer(int32)|true|none||none|
|» userName|string|true|none||none|
|» userTrueName|string|true|none||none|
|» gender|integer(int32)¦null|false|none||none|
|» headImageUrl|string¦null|false|none||none|
|» role_Id|integer(int32)¦null|false|none||none|
|» email|string¦null|false|none||none|
|» token|string¦null|false|none||none|
|» userPwd|string¦null|false|none||none|
|» createDate|string(date-time)¦null|false|none||none|
|» phoneNo|string¦null|false|none||none|
|» createID|integer(int32)¦null|false|none||none|
|» creator|string¦null|false|none||none|
|» enable|integer(int32)¦null|false|none||none|
|» modifyID|integer(int32)¦null|false|none||none|
|» modifier|string¦null|false|none||none|
|» modifyDate|string(date-time)¦null|false|none||none|
|» lastLoginDate|string(date-time)¦null|false|none||none|
|» lastModifyPwdDate|string(date-time)¦null|false|none||none|
|» remark|string¦null|false|none||none|
|» orderNo|integer(int32)¦null|false|none||none|
|» deptIds|string¦null|false|none||none|
|» roleIds|string¦null|false|none||none|
|» postId|string¦null|false|none||none|
## POST /api/Sys_User/GetUserList
POST /api/Sys_User/GetUserList
> 返回示例
> 200 Response
```json
[
{
"isOnline": 0,
"user_Id": 0,
"userName": "string",
"userTrueName": "string",
"gender": 0,
"headImageUrl": "string",
"role_Id": 0,
"email": "string",
"token": "string",
"userPwd": "string",
"createDate": "2019-08-24T14:15:22Z",
"phoneNo": "string",
"createID": 0,
"creator": "string",
"enable": 0,
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"lastLoginDate": "2019-08-24T14:15:22Z",
"lastModifyPwdDate": "2019-08-24T14:15:22Z",
"remark": "string",
"orderNo": 0,
"deptIds": "string",
"roleIds": "string",
"postId": "string"
}
]
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|Inline|
### 返回数据结构
状态码 **200**
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|*anonymous*|[[Sys_User](#schemasys_user)]|false|none||none|
|» isOnline|integer(int32)|false|none||none|
|» user_Id|integer(int32)|true|none||none|
|» userName|string|true|none||none|
|» userTrueName|string|true|none||none|
|» gender|integer(int32)¦null|false|none||none|
|» headImageUrl|string¦null|false|none||none|
|» role_Id|integer(int32)¦null|false|none||none|
|» email|string¦null|false|none||none|
|» token|string¦null|false|none||none|
|» userPwd|string¦null|false|none||none|
|» createDate|string(date-time)¦null|false|none||none|
|» phoneNo|string¦null|false|none||none|
|» createID|integer(int32)¦null|false|none||none|
|» creator|string¦null|false|none||none|
|» enable|integer(int32)¦null|false|none||none|
|» modifyID|integer(int32)¦null|false|none||none|
|» modifier|string¦null|false|none||none|
|» modifyDate|string(date-time)¦null|false|none||none|
|» lastLoginDate|string(date-time)¦null|false|none||none|
|» lastModifyPwdDate|string(date-time)¦null|false|none||none|
|» remark|string¦null|false|none||none|
|» orderNo|integer(int32)¦null|false|none||none|
|» deptIds|string¦null|false|none||none|
|» roleIds|string¦null|false|none||none|
|» postId|string¦null|false|none||none|
## POST /api/User/login
POST /api/User/login
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/User/login
GET /api/User/login
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/login
POST /api/Sys_User/login
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_User/login
GET /api/Sys_User/login
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/replaceToken
POST /api/User/replaceToken
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/replaceToken
POST /api/Sys_User/replaceToken
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/modifyPwd
POST /api/User/modifyPwd
> Body 请求参数
```json
{
"property1": "string",
"property2": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
**additionalProperties**|body|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/modifyPwd
POST /api/Sys_User/modifyPwd
> Body 请求参数
```json
{
"property1": "string",
"property2": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
**additionalProperties**|body|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/getCurrentUserInfo
POST /api/User/getCurrentUserInfo
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/getCurrentUserInfo
POST /api/Sys_User/getCurrentUserInfo
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/modifyUserPwd
POST /api/User/modifyUserPwd
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/modifyUserPwd
POST /api/Sys_User/modifyUserPwd
> Body 请求参数
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[LoginInfo](#schemalogininfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/User/getVierificationCode
GET /api/User/getVierificationCode
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_User/getVierificationCode
GET /api/Sys_User/getVierificationCode
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/Upload
POST /api/User/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/Upload
POST /api/Sys_User/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/updateUserInfo
POST /api/User/updateUserInfo
> Body 请求参数
```json
{
"isOnline": 0,
"user_Id": 0,
"userName": "string",
"userTrueName": "string",
"gender": 0,
"headImageUrl": "string",
"role_Id": 0,
"email": "string",
"token": "string",
"userPwd": "string",
"createDate": "2019-08-24T14:15:22Z",
"phoneNo": "string",
"createID": 0,
"creator": "string",
"enable": 0,
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"lastLoginDate": "2019-08-24T14:15:22Z",
"lastModifyPwdDate": "2019-08-24T14:15:22Z",
"remark": "string",
"orderNo": 0,
"deptIds": "string",
"roleIds": "string",
"postId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_User](#schemasys_user)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/updateUserInfo
POST /api/Sys_User/updateUserInfo
> Body 请求参数
```json
{
"isOnline": 0,
"user_Id": 0,
"userName": "string",
"userTrueName": "string",
"gender": 0,
"headImageUrl": "string",
"role_Id": 0,
"email": "string",
"token": "string",
"userPwd": "string",
"createDate": "2019-08-24T14:15:22Z",
"phoneNo": "string",
"createID": 0,
"creator": "string",
"enable": 0,
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"lastLoginDate": "2019-08-24T14:15:22Z",
"lastModifyPwdDate": "2019-08-24T14:15:22Z",
"remark": "string",
"orderNo": 0,
"deptIds": "string",
"roleIds": "string",
"postId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[Sys_User](#schemasys_user)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/GetPageData
POST /api/User/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/GetPageData
POST /api/Sys_User/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/getUserAuth
POST /api/User/getUserAuth
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/getUserAuth
POST /api/Sys_User/getUserAuth
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userId|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/saveUserAuth
POST /api/User/saveUserAuth
> Body 请求参数
```json
[
{
"id": 0,
"userId": 0,
"authUserIds": "string",
"menuId": 0,
"tableName": "string",
"enable": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userId|query|integer(int32)| 否 |none|
|body|body|[Sys_UserAuth](#schemasys_userauth)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/saveUserAuth
POST /api/Sys_User/saveUserAuth
> Body 请求参数
```json
[
{
"id": 0,
"userId": 0,
"authUserIds": "string",
"menuId": 0,
"tableName": "string",
"enable": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|userId|query|integer(int32)| 否 |none|
|body|body|[Sys_UserAuth](#schemasys_userauth)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/GetDetailPage
POST /api/User/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/GetDetailPage
POST /api/Sys_User/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/User/DownLoadTemplate
GET /api/User/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_User/DownLoadTemplate
GET /api/Sys_User/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/Import
POST /api/User/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/Import
POST /api/Sys_User/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/Export
POST /api/User/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/Export
POST /api/Sys_User/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/Del
POST /api/User/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/Del
POST /api/Sys_User/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/Audit
POST /api/User/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/Audit
POST /api/Sys_User/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/antiAudit
POST /api/User/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/antiAudit
POST /api/Sys_User/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/Add
POST /api/User/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/Add
POST /api/Sys_User/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/User/Update
POST /api/User/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_User/Update
POST /api/Sys_User/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_WorkFlow
## GET /api/Sys_WorkFlow/getTableInfo
GET /api/Sys_WorkFlow/getTableInfo
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_WorkFlow/getNodeDic
GET /api/Sys_WorkFlow/getNodeDic
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/getSteps
POST /api/Sys_WorkFlow/getSteps
> Body 请求参数
```json
[
"string"
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|tableName|query|string| 否 |none|
|isAnti|query|boolean| 否 |none|
|body|body|array[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/getFields
POST /api/Sys_WorkFlow/getFields
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|table|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_WorkFlow/getOptions
GET /api/Sys_WorkFlow/getOptions
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|id|query|string(uuid)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/sign
POST /api/Sys_WorkFlow/sign
> Body 请求参数
```json
{
"signType": "string",
"auditMethod": 0,
"auditType": 0,
"workFlowTable_Id": "656d990c-99cf-47f5-8f2a-4a40db692e63",
"currentWorkFlowTableStep_Id": "7c2656d6-8cec-490b-9d4e-1d9d6fc9d0e3",
"currentStepId": "string",
"rows": [
{
"sys_WorkFlowTableStep_Id": "2d2103b7-c487-4551-80c6-b50dda243566",
"workFlowTable_Id": "656d990c-99cf-47f5-8f2a-4a40db692e63",
"workFlow_Id": "7d5265b6-2489-42aa-bb4c-31926af6420a",
"stepId": "string",
"stepName": "string",
"stepType": 0,
"stepValue": "string",
"orderId": 0,
"remark": "string",
"createDate": "2019-08-24T14:15:22Z",
"createID": 0,
"creator": "string",
"enable": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"auditId": 0,
"auditor": "string",
"auditStatus": 0,
"auditDate": "2019-08-24T14:15:22Z",
"stepAttrType": "string",
"parentId": "string",
"nextStepId": "string",
"weight": 0,
"auditMethod": 0,
"formOptions": "string",
"sourceType": "string",
"attachFile": "string",
"attachType": "string",
"stepEditForm": "string",
"attachQty": 0
}
],
"stepName": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SignInfo](#schemasigninfo)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/Upload
POST /api/Sys_WorkFlow/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/GetPageData
POST /api/Sys_WorkFlow/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/GetDetailPage
POST /api/Sys_WorkFlow/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_WorkFlow/DownLoadTemplate
GET /api/Sys_WorkFlow/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/Import
POST /api/Sys_WorkFlow/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/Export
POST /api/Sys_WorkFlow/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/Del
POST /api/Sys_WorkFlow/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/Audit
POST /api/Sys_WorkFlow/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/antiAudit
POST /api/Sys_WorkFlow/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/Add
POST /api/Sys_WorkFlow/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlow/Update
POST /api/Sys_WorkFlow/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_WorkFlowStep
## POST /api/Sys_WorkFlowStep/GetPageData
POST /api/Sys_WorkFlowStep/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/GetDetailPage
POST /api/Sys_WorkFlowStep/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/Upload
POST /api/Sys_WorkFlowStep/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_WorkFlowStep/DownLoadTemplate
GET /api/Sys_WorkFlowStep/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/Import
POST /api/Sys_WorkFlowStep/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/Export
POST /api/Sys_WorkFlowStep/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/Del
POST /api/Sys_WorkFlowStep/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/Audit
POST /api/Sys_WorkFlowStep/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/antiAudit
POST /api/Sys_WorkFlowStep/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/Add
POST /api/Sys_WorkFlowStep/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowStep/Update
POST /api/Sys_WorkFlowStep/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_WorkFlowTable
## POST /api/Sys_WorkFlowTable/GetPageData
POST /api/Sys_WorkFlowTable/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/GetDetailPage
POST /api/Sys_WorkFlowTable/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/Upload
POST /api/Sys_WorkFlowTable/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_WorkFlowTable/DownLoadTemplate
GET /api/Sys_WorkFlowTable/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/Import
POST /api/Sys_WorkFlowTable/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/Export
POST /api/Sys_WorkFlowTable/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/Del
POST /api/Sys_WorkFlowTable/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/Audit
POST /api/Sys_WorkFlowTable/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/antiAudit
POST /api/Sys_WorkFlowTable/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/Add
POST /api/Sys_WorkFlowTable/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTable/Update
POST /api/Sys_WorkFlowTable/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Sys_WorkFlowTableStep
## POST /api/Sys_WorkFlowTableStep/GetPageData
POST /api/Sys_WorkFlowTableStep/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/GetDetailPage
POST /api/Sys_WorkFlowTableStep/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/Upload
POST /api/Sys_WorkFlowTableStep/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Sys_WorkFlowTableStep/DownLoadTemplate
GET /api/Sys_WorkFlowTableStep/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/Import
POST /api/Sys_WorkFlowTableStep/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/Export
POST /api/Sys_WorkFlowTableStep/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/Del
POST /api/Sys_WorkFlowTableStep/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/Audit
POST /api/Sys_WorkFlowTableStep/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/antiAudit
POST /api/Sys_WorkFlowTableStep/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/Add
POST /api/Sys_WorkFlowTableStep/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Sys_WorkFlowTableStep/Update
POST /api/Sys_WorkFlowTableStep/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# TestDb
## POST /api/TestDb/GetPageData
POST /api/TestDb/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/GetDetailPage
POST /api/TestDb/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/Upload
POST /api/TestDb/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/TestDb/DownLoadTemplate
GET /api/TestDb/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/Import
POST /api/TestDb/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/Export
POST /api/TestDb/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/Del
POST /api/TestDb/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/Audit
POST /api/TestDb/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/antiAudit
POST /api/TestDb/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/Add
POST /api/TestDb/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestDb/Update
POST /api/TestDb/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# TestService
## POST /api/TestService/GetPageData
POST /api/TestService/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/GetDetailPage
POST /api/TestService/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/Upload
POST /api/TestService/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/TestService/DownLoadTemplate
GET /api/TestService/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/Import
POST /api/TestService/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/Export
POST /api/TestService/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/Del
POST /api/TestService/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/Audit
POST /api/TestService/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/antiAudit
POST /api/TestService/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/Add
POST /api/TestService/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/TestService/Update
POST /api/TestService/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Warehouse_Alert
## GET /api/Warehouse_Alert/GetAlertList
GET /api/Warehouse_Alert/GetAlertList
> 返回示例
> 200 Response
```json
[
{
"alertId": "a9367074-b5c3-42c4-9be4-be129f43577e",
"area": "string",
"chargePerson": "string",
"checkResult": "string",
"checkPerson": "string",
"checkTime": "2019-08-24T14:15:22Z",
"createDate": "2019-08-24T14:15:22Z",
"message": "string",
"result": "string",
"type": "string"
}
]
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|Inline|
### 返回数据结构
状态码 **200**
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|*anonymous*|[[Warehouse_Alert](#schemawarehouse_alert)]|false|none||none|
|» alertId|string(uuid)|true|none||none|
|» area|string¦null|false|none||none|
|» chargePerson|string¦null|false|none||none|
|» checkResult|string¦null|false|none||none|
|» checkPerson|string¦null|false|none||none|
|» checkTime|string(date-time)¦null|false|none||none|
|» createDate|string(date-time)¦null|false|none||none|
|» message|string¦null|false|none||none|
|» result|string¦null|false|none||none|
|» type|string¦null|false|none||none|
## POST /api/Warehouse_Alert/GetPageData
POST /api/Warehouse_Alert/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/GetDetailPage
POST /api/Warehouse_Alert/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/Upload
POST /api/Warehouse_Alert/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Warehouse_Alert/DownLoadTemplate
GET /api/Warehouse_Alert/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/Import
POST /api/Warehouse_Alert/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/Export
POST /api/Warehouse_Alert/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/Del
POST /api/Warehouse_Alert/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/Audit
POST /api/Warehouse_Alert/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/antiAudit
POST /api/Warehouse_Alert/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/Add
POST /api/Warehouse_Alert/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Alert/Update
POST /api/Warehouse_Alert/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Warehouse_Area
## POST /api/Warehouse_Area/GetPageData
POST /api/Warehouse_Area/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/GetDetailPage
POST /api/Warehouse_Area/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/Upload
POST /api/Warehouse_Area/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Warehouse_Area/DownLoadTemplate
GET /api/Warehouse_Area/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/Import
POST /api/Warehouse_Area/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/Export
POST /api/Warehouse_Area/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/Del
POST /api/Warehouse_Area/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/Audit
POST /api/Warehouse_Area/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/antiAudit
POST /api/Warehouse_Area/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/Add
POST /api/Warehouse_Area/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Area/Update
POST /api/Warehouse_Area/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_carapply
## POST /api/warehouse_carapply/GetPageData
POST /api/warehouse_carapply/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/GetDetailPage
POST /api/warehouse_carapply/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/Upload
POST /api/warehouse_carapply/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_carapply/DownLoadTemplate
GET /api/warehouse_carapply/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/Import
POST /api/warehouse_carapply/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/Export
POST /api/warehouse_carapply/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/Del
POST /api/warehouse_carapply/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/Audit
POST /api/warehouse_carapply/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/antiAudit
POST /api/warehouse_carapply/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/Add
POST /api/warehouse_carapply/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carapply/Update
POST /api/warehouse_carapply/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_carentryexitlog
## POST /api/warehouse_carentryexitlog/GetPageData
POST /api/warehouse_carentryexitlog/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/GetDetailPage
POST /api/warehouse_carentryexitlog/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/Upload
POST /api/warehouse_carentryexitlog/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_carentryexitlog/DownLoadTemplate
GET /api/warehouse_carentryexitlog/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/Import
POST /api/warehouse_carentryexitlog/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/Export
POST /api/warehouse_carentryexitlog/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/Del
POST /api/warehouse_carentryexitlog/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/Audit
POST /api/warehouse_carentryexitlog/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/antiAudit
POST /api/warehouse_carentryexitlog/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/Add
POST /api/warehouse_carentryexitlog/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carentryexitlog/Update
POST /api/warehouse_carentryexitlog/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_carlog
## POST /api/warehouse_carlog/GetPageData
POST /api/warehouse_carlog/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/GetDetailPage
POST /api/warehouse_carlog/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/Upload
POST /api/warehouse_carlog/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_carlog/DownLoadTemplate
GET /api/warehouse_carlog/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/Import
POST /api/warehouse_carlog/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/Export
POST /api/warehouse_carlog/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/Del
POST /api/warehouse_carlog/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/Audit
POST /api/warehouse_carlog/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/antiAudit
POST /api/warehouse_carlog/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/Add
POST /api/warehouse_carlog/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carlog/Update
POST /api/warehouse_carlog/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_cars
## GET /api/warehouse_cars/GetCarStatus
GET /api/warehouse_cars/GetCarStatus
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|carid|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_cars/GetCarNumber
GET /api/warehouse_cars/GetCarNumber
> 返回示例
> 200 Response
```json
0
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|integer|
## GET /api/warehouse_cars/GetCarList
GET /api/warehouse_cars/GetCarList
> 返回示例
> 200 Response
```json
[
{
"carId": 0,
"carNumber": "string",
"carType": "string",
"buyTime": "2019-08-24T14:15:22Z",
"serviceLife": 0,
"serviceInterval": "string",
"status": "string",
"memo": "string"
}
]
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|Inline|
### 返回数据结构
状态码 **200**
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|*anonymous*|[[warehouse_cars](#schemawarehouse_cars)]|false|none||none|
|» carId|integer(int32)|true|none||none|
|» carNumber|string¦null|false|none||none|
|» carType|string¦null|false|none||none|
|» buyTime|string(date-time)¦null|false|none||none|
|» serviceLife|integer(int32)¦null|false|none||none|
|» serviceInterval|string¦null|false|none||none|
|» status|string¦null|false|none||none|
|» memo|string¦null|false|none||none|
## POST /api/warehouse_cars/GetPageData
POST /api/warehouse_cars/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/GetDetailPage
POST /api/warehouse_cars/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/Upload
POST /api/warehouse_cars/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_cars/DownLoadTemplate
GET /api/warehouse_cars/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/Import
POST /api/warehouse_cars/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/Export
POST /api/warehouse_cars/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/Del
POST /api/warehouse_cars/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/Audit
POST /api/warehouse_cars/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/antiAudit
POST /api/warehouse_cars/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/Add
POST /api/warehouse_cars/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_cars/Update
POST /api/warehouse_cars/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_carvisitor
## GET /api/warehouse_carvisitor/GetCarNumber
GET /api/warehouse_carvisitor/GetCarNumber
> 返回示例
> 200 Response
```json
0
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|integer|
## GET /api/warehouse_carvisitor/GetCarList
GET /api/warehouse_carvisitor/GetCarList
> 返回示例
> 200 Response
```json
[
{
"id": 0,
"carNumber": "string",
"visitReason": "string",
"entryTime": "2019-08-24T14:15:22Z",
"exitTime": "2019-08-24T14:15:22Z",
"photo": "string",
"allowArea": "string"
}
]
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|Inline|
### 返回数据结构
状态码 **200**
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|*anonymous*|[[warehouse_carvisitor](#schemawarehouse_carvisitor)]|false|none||none|
|» id|integer(int32)|true|none||none|
|» carNumber|string¦null|false|none||none|
|» visitReason|string¦null|false|none||none|
|» entryTime|string(date-time)¦null|false|none||none|
|» exitTime|string(date-time)¦null|false|none||none|
|» photo|string¦null|false|none||none|
|» allowArea|string¦null|false|none||none|
## POST /api/warehouse_carvisitor/GetPageData
POST /api/warehouse_carvisitor/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/GetDetailPage
POST /api/warehouse_carvisitor/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/Upload
POST /api/warehouse_carvisitor/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_carvisitor/DownLoadTemplate
GET /api/warehouse_carvisitor/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/Import
POST /api/warehouse_carvisitor/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/Export
POST /api/warehouse_carvisitor/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/Del
POST /api/warehouse_carvisitor/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/Audit
POST /api/warehouse_carvisitor/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/antiAudit
POST /api/warehouse_carvisitor/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/Add
POST /api/warehouse_carvisitor/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_carvisitor/Update
POST /api/warehouse_carvisitor/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Warehouse_Device
## POST /api/Warehouse_Device/GetPageData
POST /api/Warehouse_Device/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/GetDetailPage
POST /api/Warehouse_Device/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/Upload
POST /api/Warehouse_Device/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Warehouse_Device/DownLoadTemplate
GET /api/Warehouse_Device/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/Import
POST /api/Warehouse_Device/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/Export
POST /api/Warehouse_Device/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/Del
POST /api/Warehouse_Device/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/Audit
POST /api/Warehouse_Device/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/antiAudit
POST /api/Warehouse_Device/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/Add
POST /api/Warehouse_Device/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_Device/Update
POST /api/Warehouse_Device/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_devicepoint
## POST /api/warehouse_devicepoint/GetPageData
POST /api/warehouse_devicepoint/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/GetDetailPage
POST /api/warehouse_devicepoint/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/Upload
POST /api/warehouse_devicepoint/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_devicepoint/DownLoadTemplate
GET /api/warehouse_devicepoint/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/Import
POST /api/warehouse_devicepoint/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/Export
POST /api/warehouse_devicepoint/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/Del
POST /api/warehouse_devicepoint/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/Audit
POST /api/warehouse_devicepoint/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/antiAudit
POST /api/warehouse_devicepoint/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/Add
POST /api/warehouse_devicepoint/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_devicepoint/Update
POST /api/warehouse_devicepoint/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_emergencyresponse
## POST /api/warehouse_emergencyresponse/GetPageData
POST /api/warehouse_emergencyresponse/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/GetDetailPage
POST /api/warehouse_emergencyresponse/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/Upload
POST /api/warehouse_emergencyresponse/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_emergencyresponse/DownLoadTemplate
GET /api/warehouse_emergencyresponse/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/Import
POST /api/warehouse_emergencyresponse/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/Export
POST /api/warehouse_emergencyresponse/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/Del
POST /api/warehouse_emergencyresponse/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/Audit
POST /api/warehouse_emergencyresponse/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/antiAudit
POST /api/warehouse_emergencyresponse/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/Add
POST /api/warehouse_emergencyresponse/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_emergencyresponse/Update
POST /api/warehouse_emergencyresponse/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_environmentvariable
## POST /api/warehouse_environmentvariable/GetPageData
POST /api/warehouse_environmentvariable/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/GetDetailPage
POST /api/warehouse_environmentvariable/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/Upload
POST /api/warehouse_environmentvariable/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_environmentvariable/DownLoadTemplate
GET /api/warehouse_environmentvariable/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/Import
POST /api/warehouse_environmentvariable/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/Export
POST /api/warehouse_environmentvariable/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/Del
POST /api/warehouse_environmentvariable/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/Audit
POST /api/warehouse_environmentvariable/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/antiAudit
POST /api/warehouse_environmentvariable/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/Add
POST /api/warehouse_environmentvariable/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariable/Update
POST /api/warehouse_environmentvariable/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_environmentvariablevalue
## POST /api/warehouse_environmentvariablevalue/GetDataList
POST /api/warehouse_environmentvariablevalue/GetDataList
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|id|query|integer(int32)| 否 |none|
> 返回示例
> 200 Response
```json
[
{
"id": 0,
"environmentVariableId": 0,
"value": 0.1,
"onlineStatus": 0,
"createDate": "2019-08-24T14:15:22Z"
}
]
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|Inline|
### 返回数据结构
状态码 **200**
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|*anonymous*|[[warehouse_environmentvariablevalue](#schemawarehouse_environmentvariablevalue)]|false|none||none|
|» id|integer(int32)|true|none||none|
|» environmentVariableId|integer(int32)¦null|false|none||none|
|» value|number(double)¦null|false|none||none|
|» onlineStatus|integer(int32)¦null|false|none||none|
|» createDate|string(date-time)¦null|false|none||none|
## POST /api/warehouse_environmentvariablevalue/GetPageData
POST /api/warehouse_environmentvariablevalue/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/GetDetailPage
POST /api/warehouse_environmentvariablevalue/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/Upload
POST /api/warehouse_environmentvariablevalue/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_environmentvariablevalue/DownLoadTemplate
GET /api/warehouse_environmentvariablevalue/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/Import
POST /api/warehouse_environmentvariablevalue/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/Export
POST /api/warehouse_environmentvariablevalue/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/Del
POST /api/warehouse_environmentvariablevalue/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/Audit
POST /api/warehouse_environmentvariablevalue/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/antiAudit
POST /api/warehouse_environmentvariablevalue/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/Add
POST /api/warehouse_environmentvariablevalue/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_environmentvariablevalue/Update
POST /api/warehouse_environmentvariablevalue/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_keyapply
## POST /api/warehouse_keyapply/GetPageData
POST /api/warehouse_keyapply/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/GetDetailPage
POST /api/warehouse_keyapply/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/Upload
POST /api/warehouse_keyapply/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_keyapply/DownLoadTemplate
GET /api/warehouse_keyapply/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/Import
POST /api/warehouse_keyapply/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/Export
POST /api/warehouse_keyapply/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/Del
POST /api/warehouse_keyapply/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/Audit
POST /api/warehouse_keyapply/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/antiAudit
POST /api/warehouse_keyapply/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/Add
POST /api/warehouse_keyapply/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keyapply/Update
POST /api/warehouse_keyapply/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_keylog
## POST /api/warehouse_keylog/GetPageData
POST /api/warehouse_keylog/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/GetDetailPage
POST /api/warehouse_keylog/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/Upload
POST /api/warehouse_keylog/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_keylog/DownLoadTemplate
GET /api/warehouse_keylog/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/Import
POST /api/warehouse_keylog/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/Export
POST /api/warehouse_keylog/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/Del
POST /api/warehouse_keylog/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/Audit
POST /api/warehouse_keylog/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/antiAudit
POST /api/warehouse_keylog/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/Add
POST /api/warehouse_keylog/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keylog/Update
POST /api/warehouse_keylog/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_keys
## GET /api/warehouse_keys/GetKeyStatus
GET /api/warehouse_keys/GetKeyStatus
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|keyid|query|integer(int32)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_keys/GetAllStatus
GET /api/warehouse_keys/GetAllStatus
> 返回示例
> 200 Response
```json
"string"
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|string|
## POST /api/warehouse_keys/GetPageData
POST /api/warehouse_keys/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/GetDetailPage
POST /api/warehouse_keys/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/Upload
POST /api/warehouse_keys/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_keys/DownLoadTemplate
GET /api/warehouse_keys/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/Import
POST /api/warehouse_keys/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/Export
POST /api/warehouse_keys/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/Del
POST /api/warehouse_keys/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/Audit
POST /api/warehouse_keys/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/antiAudit
POST /api/warehouse_keys/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/Add
POST /api/warehouse_keys/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_keys/Update
POST /api/warehouse_keys/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_patrollog
## GET /api/warehouse_patrollog/GetPatrolLog
GET /api/warehouse_patrollog/GetPatrolLog
> 返回示例
> 200 Response
```json
[
{
"user1": "string",
"user2": "string",
"user3": "string",
"point": "string",
"createDate": "2019-08-24T14:15:22Z"
}
]
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|Inline|
### 返回数据结构
状态码 **200**
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|*anonymous*|[[PatrolLog](#schemapatrollog)]|false|none||none|
|» user1|string¦null|false|none||none|
|» user2|string¦null|false|none||none|
|» user3|string¦null|false|none||none|
|» point|string¦null|false|none||none|
|» createDate|string(date-time)|false|none||none|
## POST /api/warehouse_patrollog/GetPageData
POST /api/warehouse_patrollog/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/GetDetailPage
POST /api/warehouse_patrollog/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/Upload
POST /api/warehouse_patrollog/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_patrollog/DownLoadTemplate
GET /api/warehouse_patrollog/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/Import
POST /api/warehouse_patrollog/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/Export
POST /api/warehouse_patrollog/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/Del
POST /api/warehouse_patrollog/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/Audit
POST /api/warehouse_patrollog/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/antiAudit
POST /api/warehouse_patrollog/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/Add
POST /api/warehouse_patrollog/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrollog/Update
POST /api/warehouse_patrollog/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_patrolpath
## POST /api/warehouse_patrolpath/GetPageData
POST /api/warehouse_patrolpath/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/GetDetailPage
POST /api/warehouse_patrolpath/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/Upload
POST /api/warehouse_patrolpath/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_patrolpath/DownLoadTemplate
GET /api/warehouse_patrolpath/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/Import
POST /api/warehouse_patrolpath/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/Export
POST /api/warehouse_patrolpath/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/Del
POST /api/warehouse_patrolpath/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/Audit
POST /api/warehouse_patrolpath/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/antiAudit
POST /api/warehouse_patrolpath/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/Add
POST /api/warehouse_patrolpath/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpath/Update
POST /api/warehouse_patrolpath/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_patrolpathpoint
## POST /api/warehouse_patrolpathpoint/GetPageData
POST /api/warehouse_patrolpathpoint/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/GetDetailPage
POST /api/warehouse_patrolpathpoint/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/Upload
POST /api/warehouse_patrolpathpoint/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_patrolpathpoint/DownLoadTemplate
GET /api/warehouse_patrolpathpoint/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/Import
POST /api/warehouse_patrolpathpoint/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/Export
POST /api/warehouse_patrolpathpoint/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/Del
POST /api/warehouse_patrolpathpoint/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/Audit
POST /api/warehouse_patrolpathpoint/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/antiAudit
POST /api/warehouse_patrolpathpoint/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/Add
POST /api/warehouse_patrolpathpoint/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolpathpoint/Update
POST /api/warehouse_patrolpathpoint/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_patrolschedule
## POST /api/warehouse_patrolschedule/GetPageData
POST /api/warehouse_patrolschedule/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/GetDetailPage
POST /api/warehouse_patrolschedule/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/Upload
POST /api/warehouse_patrolschedule/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_patrolschedule/DownLoadTemplate
GET /api/warehouse_patrolschedule/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/Import
POST /api/warehouse_patrolschedule/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/Export
POST /api/warehouse_patrolschedule/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/Del
POST /api/warehouse_patrolschedule/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/Audit
POST /api/warehouse_patrolschedule/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/antiAudit
POST /api/warehouse_patrolschedule/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/Add
POST /api/warehouse_patrolschedule/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_patrolschedule/Update
POST /api/warehouse_patrolschedule/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_personalallowarea
## POST /api/warehouse_personalallowarea/GetPageData
POST /api/warehouse_personalallowarea/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/GetDetailPage
POST /api/warehouse_personalallowarea/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/Upload
POST /api/warehouse_personalallowarea/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_personalallowarea/DownLoadTemplate
GET /api/warehouse_personalallowarea/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/Import
POST /api/warehouse_personalallowarea/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/Export
POST /api/warehouse_personalallowarea/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/Del
POST /api/warehouse_personalallowarea/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/Audit
POST /api/warehouse_personalallowarea/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/antiAudit
POST /api/warehouse_personalallowarea/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/Add
POST /api/warehouse_personalallowarea/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_personalallowarea/Update
POST /api/warehouse_personalallowarea/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_plane
## POST /api/warehouse_plane/GetPageData
POST /api/warehouse_plane/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/GetDetailPage
POST /api/warehouse_plane/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/Upload
POST /api/warehouse_plane/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_plane/DownLoadTemplate
GET /api/warehouse_plane/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/Import
POST /api/warehouse_plane/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/Export
POST /api/warehouse_plane/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/Del
POST /api/warehouse_plane/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/Audit
POST /api/warehouse_plane/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/antiAudit
POST /api/warehouse_plane/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/Add
POST /api/warehouse_plane/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_plane/Update
POST /api/warehouse_plane/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_planeflypoint
## POST /api/warehouse_planeflypoint/GetPageData
POST /api/warehouse_planeflypoint/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/GetDetailPage
POST /api/warehouse_planeflypoint/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/Upload
POST /api/warehouse_planeflypoint/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_planeflypoint/DownLoadTemplate
GET /api/warehouse_planeflypoint/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/Import
POST /api/warehouse_planeflypoint/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/Export
POST /api/warehouse_planeflypoint/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/Del
POST /api/warehouse_planeflypoint/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/Audit
POST /api/warehouse_planeflypoint/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/antiAudit
POST /api/warehouse_planeflypoint/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/Add
POST /api/warehouse_planeflypoint/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_planeflypoint/Update
POST /api/warehouse_planeflypoint/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_positionwork
## POST /api/warehouse_positionwork/GetPageData
POST /api/warehouse_positionwork/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/GetDetailPage
POST /api/warehouse_positionwork/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/Upload
POST /api/warehouse_positionwork/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_positionwork/DownLoadTemplate
GET /api/warehouse_positionwork/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/Import
POST /api/warehouse_positionwork/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/Export
POST /api/warehouse_positionwork/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/Del
POST /api/warehouse_positionwork/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/Audit
POST /api/warehouse_positionwork/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/antiAudit
POST /api/warehouse_positionwork/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/Add
POST /api/warehouse_positionwork/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionwork/Update
POST /api/warehouse_positionwork/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_positionworkpoint
## POST /api/warehouse_positionworkpoint/GetPageData
POST /api/warehouse_positionworkpoint/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/GetDetailPage
POST /api/warehouse_positionworkpoint/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/Upload
POST /api/warehouse_positionworkpoint/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_positionworkpoint/DownLoadTemplate
GET /api/warehouse_positionworkpoint/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/Import
POST /api/warehouse_positionworkpoint/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/Export
POST /api/warehouse_positionworkpoint/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/Del
POST /api/warehouse_positionworkpoint/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/Audit
POST /api/warehouse_positionworkpoint/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/antiAudit
POST /api/warehouse_positionworkpoint/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/Add
POST /api/warehouse_positionworkpoint/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_positionworkpoint/Update
POST /api/warehouse_positionworkpoint/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_realtimealert
## POST /api/warehouse_realtimealert/AlertNotify
POST /api/warehouse_realtimealert/AlertNotify
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|Message|query|string| 否 |none|
|picture|query|string| 否 |none|
|originPic|query|string| 否 |none|
|facePic|query|string| 否 |none|
|bodyPic|query|string| 否 |none|
|video|query|string| 否 |none|
|type|query|string| 否 |none|
|data|query|string| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/GetAlertMessage
POST /api/warehouse_realtimealert/GetAlertMessage
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/GetPageData
POST /api/warehouse_realtimealert/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/GetDetailPage
POST /api/warehouse_realtimealert/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/Upload
POST /api/warehouse_realtimealert/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_realtimealert/DownLoadTemplate
GET /api/warehouse_realtimealert/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/Import
POST /api/warehouse_realtimealert/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/Export
POST /api/warehouse_realtimealert/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/Del
POST /api/warehouse_realtimealert/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/Audit
POST /api/warehouse_realtimealert/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/antiAudit
POST /api/warehouse_realtimealert/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/Add
POST /api/warehouse_realtimealert/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_realtimealert/Update
POST /api/warehouse_realtimealert/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_safenotify
## GET /api/warehouse_safenotify/GetLastNotify
GET /api/warehouse_safenotify/GetLastNotify
> 返回示例
> 200 Response
```json
{
"id": 0,
"title": "string",
"content": "string",
"creator": "string",
"createDate": "2019-08-24T14:15:22Z"
}
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|[warehouse_safenotify](#schemawarehouse_safenotify)|
## POST /api/warehouse_safenotify/GetPageData
POST /api/warehouse_safenotify/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/GetDetailPage
POST /api/warehouse_safenotify/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/Upload
POST /api/warehouse_safenotify/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_safenotify/DownLoadTemplate
GET /api/warehouse_safenotify/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/Import
POST /api/warehouse_safenotify/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/Export
POST /api/warehouse_safenotify/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/Del
POST /api/warehouse_safenotify/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/Audit
POST /api/warehouse_safenotify/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/antiAudit
POST /api/warehouse_safenotify/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/Add
POST /api/warehouse_safenotify/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_safenotify/Update
POST /api/warehouse_safenotify/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Warehouse_ShiDu
## POST /api/Warehouse_ShiDu/GetPageData
POST /api/Warehouse_ShiDu/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/GetDetailPage
POST /api/Warehouse_ShiDu/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/Upload
POST /api/Warehouse_ShiDu/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Warehouse_ShiDu/DownLoadTemplate
GET /api/Warehouse_ShiDu/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/Import
POST /api/Warehouse_ShiDu/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/Export
POST /api/Warehouse_ShiDu/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/Del
POST /api/Warehouse_ShiDu/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/Audit
POST /api/Warehouse_ShiDu/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/antiAudit
POST /api/Warehouse_ShiDu/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/Add
POST /api/Warehouse_ShiDu/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_ShiDu/Update
POST /api/Warehouse_ShiDu/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Warehouse_SubSystemReport
## POST /api/Warehouse_SubSystemReport/GetPageData
POST /api/Warehouse_SubSystemReport/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/GetDetailPage
POST /api/Warehouse_SubSystemReport/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/Upload
POST /api/Warehouse_SubSystemReport/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Warehouse_SubSystemReport/DownLoadTemplate
GET /api/Warehouse_SubSystemReport/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/Import
POST /api/Warehouse_SubSystemReport/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/Export
POST /api/Warehouse_SubSystemReport/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/Del
POST /api/Warehouse_SubSystemReport/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/Audit
POST /api/Warehouse_SubSystemReport/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/antiAudit
POST /api/Warehouse_SubSystemReport/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/Add
POST /api/Warehouse_SubSystemReport/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_SubSystemReport/Update
POST /api/Warehouse_SubSystemReport/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# warehouse_visitor
## POST /api/warehouse_visitor/GetVisitorNumber
POST /api/warehouse_visitor/GetVisitorNumber
> 返回示例
> 200 Response
```json
0
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|integer|
## POST /api/warehouse_visitor/GetVisitorList
POST /api/warehouse_visitor/GetVisitorList
> 返回示例
> 200 Response
```json
[
{
"id": 0,
"trueName": "string",
"idCardNumber": "string",
"visitReason": "string",
"interviewee": 0,
"entryTime": "2019-08-24T14:15:22Z",
"exitTime": "2019-08-24T14:15:22Z",
"photo": "string",
"allowArea": "string"
}
]
```
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|Inline|
### 返回数据结构
状态码 **200**
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|*anonymous*|[[warehouse_visitor](#schemawarehouse_visitor)]|false|none||none|
|» id|integer(int32)|true|none||none|
|» trueName|string¦null|false|none||none|
|» idCardNumber|string¦null|false|none||none|
|» visitReason|string¦null|false|none||none|
|» interviewee|integer(int32)¦null|false|none||none|
|» entryTime|string(date-time)¦null|false|none||none|
|» exitTime|string(date-time)¦null|false|none||none|
|» photo|string¦null|false|none||none|
|» allowArea|string¦null|false|none||none|
## POST /api/warehouse_visitor/GetPageData
POST /api/warehouse_visitor/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/GetDetailPage
POST /api/warehouse_visitor/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/Upload
POST /api/warehouse_visitor/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/warehouse_visitor/DownLoadTemplate
GET /api/warehouse_visitor/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/Import
POST /api/warehouse_visitor/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/Export
POST /api/warehouse_visitor/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/Del
POST /api/warehouse_visitor/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/Audit
POST /api/warehouse_visitor/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/antiAudit
POST /api/warehouse_visitor/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/Add
POST /api/warehouse_visitor/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/warehouse_visitor/Update
POST /api/warehouse_visitor/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# Warehouse_WenDu
## POST /api/Warehouse_WenDu/GetPageData
POST /api/Warehouse_WenDu/GetPageData
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/GetDetailPage
POST /api/Warehouse_WenDu/GetDetailPage
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/Upload
POST /api/Warehouse_WenDu/Upload
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## GET /api/Warehouse_WenDu/DownLoadTemplate
GET /api/Warehouse_WenDu/DownLoadTemplate
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/Import
POST /api/Warehouse_WenDu/Import
> Body 请求参数
```yaml
fileInput: ""
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|object| 否 |none|
|» fileInput|body|[string]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/Export
POST /api/Warehouse_WenDu/Export
> Body 请求参数
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[PageDataOptions](#schemapagedataoptions)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/Del
POST /api/Warehouse_WenDu/Del
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/Audit
POST /api/Warehouse_WenDu/Audit
> Body 请求参数
```json
[
null
]
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|auditStatus|query|integer(int32)| 否 |none|
|auditReason|query|string| 否 |none|
|body|body|array[any]| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/antiAudit
POST /api/Warehouse_WenDu/antiAudit
> Body 请求参数
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[AntiData](#schemaantidata)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/Add
POST /api/Warehouse_WenDu/Add
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
## POST /api/Warehouse_WenDu/Update
POST /api/Warehouse_WenDu/Update
> Body 请求参数
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 请求参数
|名称|位置|类型|必选|说明|
|---|---|---|---|---|
|body|body|[SaveModel](#schemasavemodel)| 否 |none|
### 返回结果
|状态码|状态码含义|说明|数据模型|
|---|---|---|---|
|200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)|OK|None|
# 数据模型
<h2 id="tocS_AntiData">AntiData</h2>
<a id="schemaantidata"></a>
<a id="schema_AntiData"></a>
<a id="tocSantidata"></a>
<a id="tocsantidata"></a>
```json
{
"key": null,
"auditReason": "string",
"isFlow": true,
"stepId": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|key|null|false|none||none|
|auditReason|string¦null|false|none||none|
|isFlow|boolean|false|none||none|
|stepId|string¦null|false|none||none|
<h2 id="tocS_DataViewProjects">DataViewProjects</h2>
<a id="schemadataviewprojects"></a>
<a id="schema_DataViewProjects"></a>
<a id="tocSdataviewprojects"></a>
<a id="tocsdataviewprojects"></a>
```json
{
"id": 0,
"projectName": "string",
"state": 0,
"isDel": 0,
"indexImage": "string",
"remarks": "string",
"orderNo": 0,
"createId": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"content": "string",
"dbServiceId": "fdbe9e04-7d8b-48e1-a674-550509a8e5d0"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|id|integer(int64)|true|none||none|
|projectName|string¦null|false|none||none|
|state|integer(int32)|true|none||none|
|isDel|integer(int32)|true|none||none|
|indexImage|string¦null|false|none||none|
|remarks|string¦null|false|none||none|
|orderNo|integer(int32)¦null|false|none||none|
|createId|integer(int32)¦null|false|none||none|
|creator|string¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
|content|string¦null|false|none||none|
|dbServiceId|string(uuid)¦null|false|none||none|
<h2 id="tocS_DetailInfo">DetailInfo</h2>
<a id="schemadetailinfo"></a>
<a id="schema_DetailInfo"></a>
<a id="tocSdetailinfo"></a>
<a id="tocsdetailinfo"></a>
```json
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|table|string¦null|false|none||none|
|data|[object]¦null|false|none||none|
**additionalProperties**|any|false|none||none|
|delKeys|[any]¦null|false|none||none|
<h2 id="tocS_LoginInfo">LoginInfo</h2>
<a id="schemalogininfo"></a>
<a id="schema_LoginInfo"></a>
<a id="tocSlogininfo"></a>
<a id="tocslogininfo"></a>
```json
{
"userName": "string",
"password": "string",
"verificationCode": "string",
"uuid": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|userName|string|true|none||none|
|password|string|true|none||none|
|verificationCode|string|true|none||none|
|uuid|string|true|none||none|
<h2 id="tocS_PageDataOptions">PageDataOptions</h2>
<a id="schemapagedataoptions"></a>
<a id="schema_PageDataOptions"></a>
<a id="tocSpagedataoptions"></a>
<a id="tocspagedataoptions"></a>
```json
{
"page": 0,
"rows": 0,
"total": 0,
"tableName": "string",
"detailTable": "string",
"sort": "string",
"order": "string",
"wheres": "string",
"export": true,
"value": null,
"filter": [
{
"name": "string",
"value": "string",
"displayType": "string"
}
],
"columns": [
"string"
]
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|page|integer(int32)|false|none||none|
|rows|integer(int32)|false|none||none|
|total|integer(int32)|false|none||none|
|tableName|string¦null|false|none||none|
|detailTable|string¦null|false|none||none|
|sort|string¦null|false|none||none|
|order|string¦null|false|none||none|
|wheres|string¦null|false|none||none|
|export|boolean|false|none||none|
|value|null|false|none||none|
|filter|[[SearchParameters](#schemasearchparameters)]¦null|false|none||none|
|columns|[string]¦null|false|none||none|
<h2 id="tocS_PatrolLog">PatrolLog</h2>
<a id="schemapatrollog"></a>
<a id="schema_PatrolLog"></a>
<a id="tocSpatrollog"></a>
<a id="tocspatrollog"></a>
```json
{
"user1": "string",
"user2": "string",
"user3": "string",
"point": "string",
"createDate": "2019-08-24T14:15:22Z"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|user1|string¦null|false|none||none|
|user2|string¦null|false|none||none|
|user3|string¦null|false|none||none|
|point|string¦null|false|none||none|
|createDate|string(date-time)|false|none||none|
<h2 id="tocS_PrintQuery">PrintQuery</h2>
<a id="schemaprintquery"></a>
<a id="schema_PrintQuery"></a>
<a id="tocSprintquery"></a>
<a id="tocsprintquery"></a>
```json
{
"ids": [
null
],
"templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
"templateName": "string",
"table": "string",
"batchMainAndDetail": true,
"batchMain": true,
"detail": true,
"options": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|ids|[any]¦null|false|none||none|
|templateId|string(uuid)|false|none||none|
|templateName|string¦null|false|none||none|
|table|string¦null|false|none||none|
|batchMainAndDetail|boolean|false|none||none|
|batchMain|boolean|false|none||none|
|detail|boolean|false|none||none|
|options|string¦null|false|none||none|
<h2 id="tocS_SaveModel">SaveModel</h2>
<a id="schemasavemodel"></a>
<a id="schema_SaveModel"></a>
<a id="tocSsavemodel"></a>
<a id="tocssavemodel"></a>
```json
{
"mainData": {
"property1": null,
"property2": null
},
"detailData": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
],
"extra": null,
"details": [
{
"table": "string",
"data": [
{
"property1": null,
"property2": null
}
],
"delKeys": [
null
]
}
],
"subDelInfo": [
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
],
"isFlow": true,
"dataVersionField": "string",
"dataVersionValue": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|mainData|object¦null|false|none||none|
**additionalProperties**|null|false|none||none|
|detailData|[object]¦null|false|none||none|
**additionalProperties**|any|false|none||none|
|delKeys|[any]¦null|false|none||none|
|extra|null|false|none||none|
|details|[[DetailInfo](#schemadetailinfo)]¦null|false|none||none|
|subDelInfo|[[SubDelInfo](#schemasubdelinfo)]¦null|false|none||none|
|isFlow|boolean|false|none||none|
|dataVersionField|string¦null|false|none||none|
|dataVersionValue|string¦null|false|none||none|
<h2 id="tocS_SearchParameters">SearchParameters</h2>
<a id="schemasearchparameters"></a>
<a id="schema_SearchParameters"></a>
<a id="tocSsearchparameters"></a>
<a id="tocssearchparameters"></a>
```json
{
"name": "string",
"value": "string",
"displayType": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|name|string¦null|false|none||none|
|value|string¦null|false|none||none|
|displayType|string¦null|false|none||none|
<h2 id="tocS_SignInfo">SignInfo</h2>
<a id="schemasigninfo"></a>
<a id="schema_SignInfo"></a>
<a id="tocSsigninfo"></a>
<a id="tocssigninfo"></a>
```json
{
"signType": "string",
"auditMethod": 0,
"auditType": 0,
"workFlowTable_Id": "656d990c-99cf-47f5-8f2a-4a40db692e63",
"currentWorkFlowTableStep_Id": "7c2656d6-8cec-490b-9d4e-1d9d6fc9d0e3",
"currentStepId": "string",
"rows": [
{
"sys_WorkFlowTableStep_Id": "2d2103b7-c487-4551-80c6-b50dda243566",
"workFlowTable_Id": "656d990c-99cf-47f5-8f2a-4a40db692e63",
"workFlow_Id": "7d5265b6-2489-42aa-bb4c-31926af6420a",
"stepId": "string",
"stepName": "string",
"stepType": 0,
"stepValue": "string",
"orderId": 0,
"remark": "string",
"createDate": "2019-08-24T14:15:22Z",
"createID": 0,
"creator": "string",
"enable": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"auditId": 0,
"auditor": "string",
"auditStatus": 0,
"auditDate": "2019-08-24T14:15:22Z",
"stepAttrType": "string",
"parentId": "string",
"nextStepId": "string",
"weight": 0,
"auditMethod": 0,
"formOptions": "string",
"sourceType": "string",
"attachFile": "string",
"attachType": "string",
"stepEditForm": "string",
"attachQty": 0
}
],
"stepName": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|signType|string¦null|false|none||none|
|auditMethod|integer(int32)|false|none||none|
|auditType|integer(int32)|false|none||none|
|workFlowTable_Id|string(uuid)|false|none||none|
|currentWorkFlowTableStep_Id|string(uuid)¦null|false|none||none|
|currentStepId|string¦null|false|none||none|
|rows|[[Sys_WorkFlowTableStep](#schemasys_workflowtablestep)]¦null|false|none||none|
|stepName|string¦null|false|none||none|
<h2 id="tocS_SubDelInfo">SubDelInfo</h2>
<a id="schemasubdelinfo"></a>
<a id="schema_SubDelInfo"></a>
<a id="tocSsubdelinfo"></a>
<a id="tocssubdelinfo"></a>
```json
{
"isProescc": true,
"table": "string",
"delKeys": [
null
]
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|isProescc|boolean|false|none||none|
|table|string¦null|false|none||none|
|delKeys|[any]¦null|false|none||none|
<h2 id="tocS_Sys_Actions">Sys_Actions</h2>
<a id="schemasys_actions"></a>
<a id="schema_Sys_Actions"></a>
<a id="tocSsys_actions"></a>
<a id="tocssys_actions"></a>
```json
{
"action_Id": 0,
"menu_Id": 0,
"text": "string",
"value": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|action_Id|integer(int32)|false|none||none|
|menu_Id|integer(int32)|false|none||none|
|text|string¦null|false|none||none|
|value|string¦null|false|none||none|
<h2 id="tocS_Sys_Menu">Sys_Menu</h2>
<a id="schemasys_menu"></a>
<a id="schema_Sys_Menu"></a>
<a id="tocSsys_menu"></a>
<a id="tocssys_menu"></a>
```json
{
"menu_Id": 0,
"parentId": 0,
"menuName": "string",
"tableName": "string",
"url": "string",
"auth": "string",
"authData": 0,
"linkType": 0,
"description": "string",
"icon": "string",
"orderNo": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"enable": 0,
"menuType": 0,
"actions": [
{
"action_Id": 0,
"menu_Id": 0,
"text": "string",
"value": "string"
}
]
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|menu_Id|integer(int32)|true|none||none|
|parentId|integer(int32)|true|none||none|
|menuName|string|true|none||none|
|tableName|string¦null|false|none||none|
|url|string¦null|false|none||none|
|auth|string¦null|false|none||none|
|authData|integer(int32)¦null|false|none||none|
|linkType|integer(int32)¦null|false|none||none|
|description|string¦null|false|none||none|
|icon|string¦null|false|none||none|
|orderNo|integer(int32)¦null|false|none||none|
|creator|string¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
|modifier|string¦null|false|none||none|
|modifyDate|string(date-time)¦null|false|none||none|
|enable|integer(int32)¦null|false|none||none|
|menuType|integer(int32)¦null|false|none||none|
|actions|[[Sys_Actions](#schemasys_actions)]¦null|false|none||none|
<h2 id="tocS_Sys_Notification">Sys_Notification</h2>
<a id="schemasys_notification"></a>
<a id="schema_Sys_Notification"></a>
<a id="tocSsys_notification"></a>
<a id="tocssys_notification"></a>
```json
{
"notificationId": "2d591c23-85b1-4e8c-a6bd-74d89f8955c5",
"notificationTemplateId": "3528f075-d157-44e3-9447-167c415e2911",
"notificationTitle": "string",
"notificationCode": "string",
"businessFunction": "string",
"tableName": "string",
"tableKey": "string",
"notificationType": "string",
"notificationLevel": "string",
"targetObjectType": "string",
"targetObjectValue": "string",
"targetObjectText": "string",
"publishStatus": 0,
"linkUrl": "string",
"linkType": "string",
"isFieldTemplate": 0,
"remark": "string",
"notificationContent": "string",
"enable": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|notificationId|string(uuid)|true|none||none|
|notificationTemplateId|string(uuid)¦null|false|none||none|
|notificationTitle|string|true|none||none|
|notificationCode|string¦null|false|none||none|
|businessFunction|string¦null|false|none||none|
|tableName|string¦null|false|none||none|
|tableKey|string¦null|false|none||none|
|notificationType|string¦null|false|none||none|
|notificationLevel|string¦null|false|none||none|
|targetObjectType|string¦null|false|none||none|
|targetObjectValue|string¦null|false|none||none|
|targetObjectText|string¦null|false|none||none|
|publishStatus|integer(int32)¦null|false|none||none|
|linkUrl|string¦null|false|none||none|
|linkType|string¦null|false|none||none|
|isFieldTemplate|integer(int32)¦null|false|none||none|
|remark|string¦null|false|none||none|
|notificationContent|string|true|none||none|
|enable|integer(int32)¦null|false|none||none|
|createID|integer(int32)¦null|false|none||none|
|creator|string¦null|false|none||none|
|createDate|string(date-time)|true|none||none|
|modifyID|integer(int32)¦null|false|none||none|
|modifier|string¦null|false|none||none|
|modifyDate|string(date-time)¦null|false|none||none|
<h2 id="tocS_Sys_QuartzOptions">Sys_QuartzOptions</h2>
<a id="schemasys_quartzoptions"></a>
<a id="schema_Sys_QuartzOptions"></a>
<a id="tocSsys_quartzoptions"></a>
<a id="tocssys_quartzoptions"></a>
```json
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"taskName": "string",
"groupName": "string",
"method": "string",
"timeOut": 0,
"cronExpression": "string",
"apiUrl": "string",
"postData": "string",
"authKey": "string",
"authValue": "string",
"describe": "string",
"lastRunTime": "2019-08-24T14:15:22Z",
"status": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|id|string(uuid)|true|none||none|
|taskName|string|true|none||none|
|groupName|string|true|none||none|
|method|string¦null|false|none||none|
|timeOut|integer(int32)¦null|false|none||none|
|cronExpression|string|true|none||none|
|apiUrl|string¦null|false|none||none|
|postData|string¦null|false|none||none|
|authKey|string¦null|false|none||none|
|authValue|string¦null|false|none||none|
|describe|string¦null|false|none||none|
|lastRunTime|string(date-time)¦null|false|none||none|
|status|integer(int32)¦null|false|none||none|
|createID|integer(int32)¦null|false|none||none|
|creator|string¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
|modifyID|integer(int32)¦null|false|none||none|
|modifier|string¦null|false|none||none|
|modifyDate|string(date-time)¦null|false|none||none|
<h2 id="tocS_Sys_TableColumn">Sys_TableColumn</h2>
<a id="schemasys_tablecolumn"></a>
<a id="schema_Sys_TableColumn"></a>
<a id="tocSsys_tablecolumn"></a>
<a id="tocssys_tablecolumn"></a>
```json
{
"table_Id": 0,
"columnId": 0,
"columnName": "string",
"columnCnName": "string",
"columnType": "string",
"tableName": "string",
"maxlength": 0,
"isNull": 0,
"isDisplay": 0,
"isKey": 0,
"columnformat": "string",
"script": "string",
"dropNo": "string",
"isImage": 0,
"sortable": 0,
"columnWidth": 0,
"searchRowNo": 0,
"searchColNo": 0,
"searchType": "string",
"editRowNo": 0,
"editColNo": 0,
"editType": "string",
"colSize": 0.1,
"searchColSize": 0.1,
"isReadDataset": 0,
"enable": 0,
"apiInPut": 0,
"apiIsNull": 0,
"apiOutPut": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"orderNo": 0,
"isColumnData": 0
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|table_Id|integer(int32)|false|none||none|
|columnId|integer(int32)|false|none||none|
|columnName|string¦null|false|none||none|
|columnCnName|string¦null|false|none||none|
|columnType|string¦null|false|none||none|
|tableName|string¦null|false|none||none|
|maxlength|integer(int32)¦null|false|none||none|
|isNull|integer(int32)¦null|false|none||none|
|isDisplay|integer(int32)¦null|false|none||none|
|isKey|integer(int32)¦null|false|none||none|
|columnformat|string¦null|false|none||none|
|script|string¦null|false|none||none|
|dropNo|string¦null|false|none||none|
|isImage|integer(int32)¦null|false|none||none|
|sortable|integer(int32)¦null|false|none||none|
|columnWidth|integer(int32)¦null|false|none||none|
|searchRowNo|integer(int32)¦null|false|none||none|
|searchColNo|integer(int32)¦null|false|none||none|
|searchType|string¦null|false|none||none|
|editRowNo|integer(int32)¦null|false|none||none|
|editColNo|integer(int32)¦null|false|none||none|
|editType|string¦null|false|none||none|
|colSize|number(double)¦null|false|none||none|
|searchColSize|number(double)¦null|false|none||none|
|isReadDataset|integer(int32)¦null|false|none||none|
|enable|integer(int32)¦null|false|none||none|
|apiInPut|integer(int32)¦null|false|none||none|
|apiIsNull|integer(int32)¦null|false|none||none|
|apiOutPut|integer(int32)¦null|false|none||none|
|createID|integer(int32)¦null|false|none||none|
|creator|string¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
|modifyID|integer(int32)¦null|false|none||none|
|modifier|string¦null|false|none||none|
|modifyDate|string(date-time)¦null|false|none||none|
|orderNo|integer(int32)¦null|false|none||none|
|isColumnData|integer(int32)¦null|false|none||none|
<h2 id="tocS_Sys_TableInfo">Sys_TableInfo</h2>
<a id="schemasys_tableinfo"></a>
<a id="schema_Sys_TableInfo"></a>
<a id="tocSsys_tableinfo"></a>
<a id="tocssys_tableinfo"></a>
```json
{
"table_Id": 0,
"parentId": 0,
"tableName": "string",
"tableTrueName": "string",
"columnCNName": "string",
"namespace": "string",
"folderName": "string",
"dataTableType": "string",
"editorType": "string",
"orderNo": 0,
"uploadField": "string",
"uploadMaxCount": 0,
"richText": "string",
"expressField": "string",
"dbServer": "string",
"sortName": "string",
"detailCnName": "string",
"detailName": "string",
"enable": 0,
"cnName": "string",
"searchType": 0,
"editType": 0,
"searchDropNo": "string",
"dbSql": "string",
"foreignField": "string",
"dyPage": 0,
"dyScript": "string",
"fixedSearch": 0,
"tableColumns": [
{
"table_Id": 0,
"columnId": 0,
"columnName": "string",
"columnCnName": "string",
"columnType": "string",
"tableName": "string",
"maxlength": 0,
"isNull": 0,
"isDisplay": 0,
"isKey": 0,
"columnformat": "string",
"script": "string",
"dropNo": "string",
"isImage": 0,
"sortable": 0,
"columnWidth": 0,
"searchRowNo": 0,
"searchColNo": 0,
"searchType": "string",
"editRowNo": 0,
"editColNo": 0,
"editType": "string",
"colSize": 0.1,
"searchColSize": 0.1,
"isReadDataset": 0,
"enable": 0,
"apiInPut": 0,
"apiIsNull": 0,
"apiOutPut": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"orderNo": 0,
"isColumnData": 0
}
]
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|table_Id|integer(int32)|false|none||none|
|parentId|integer(int32)¦null|false|none||none|
|tableName|string¦null|false|none||none|
|tableTrueName|string¦null|false|none||none|
|columnCNName|string¦null|false|none||none|
|namespace|string¦null|false|none||none|
|folderName|string¦null|false|none||none|
|dataTableType|string¦null|false|none||none|
|editorType|string¦null|false|none||none|
|orderNo|integer(int32)¦null|false|none||none|
|uploadField|string¦null|false|none||none|
|uploadMaxCount|integer(int32)¦null|false|none||none|
|richText|string¦null|false|none||none|
|expressField|string¦null|false|none||none|
|dbServer|string¦null|false|none||none|
|sortName|string¦null|false|none||none|
|detailCnName|string¦null|false|none||none|
|detailName|string¦null|false|none||none|
|enable|integer(int32)¦null|false|none||none|
|cnName|string¦null|false|none||none|
|searchType|integer(int32)¦null|false|none||none|
|editType|integer(int32)¦null|false|none||none|
|searchDropNo|string¦null|false|none||none|
|dbSql|string¦null|false|none||none|
|foreignField|string¦null|false|none||none|
|dyPage|integer(int32)¦null|false|none||none|
|dyScript|string¦null|false|none||none|
|fixedSearch|integer(int32)¦null|false|none||none|
|tableColumns|[[Sys_TableColumn](#schemasys_tablecolumn)]¦null|false|none||none|
<h2 id="tocS_Sys_User">Sys_User</h2>
<a id="schemasys_user"></a>
<a id="schema_Sys_User"></a>
<a id="tocSsys_user"></a>
<a id="tocssys_user"></a>
```json
{
"isOnline": 0,
"user_Id": 0,
"userName": "string",
"userTrueName": "string",
"gender": 0,
"headImageUrl": "string",
"role_Id": 0,
"email": "string",
"token": "string",
"userPwd": "string",
"createDate": "2019-08-24T14:15:22Z",
"phoneNo": "string",
"createID": 0,
"creator": "string",
"enable": 0,
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"lastLoginDate": "2019-08-24T14:15:22Z",
"lastModifyPwdDate": "2019-08-24T14:15:22Z",
"remark": "string",
"orderNo": 0,
"deptIds": "string",
"roleIds": "string",
"postId": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|isOnline|integer(int32)|false|none||none|
|user_Id|integer(int32)|true|none||none|
|userName|string|true|none||none|
|userTrueName|string|true|none||none|
|gender|integer(int32)¦null|false|none||none|
|headImageUrl|string¦null|false|none||none|
|role_Id|integer(int32)¦null|false|none||none|
|email|string¦null|false|none||none|
|token|string¦null|false|none||none|
|userPwd|string¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
|phoneNo|string¦null|false|none||none|
|createID|integer(int32)¦null|false|none||none|
|creator|string¦null|false|none||none|
|enable|integer(int32)¦null|false|none||none|
|modifyID|integer(int32)¦null|false|none||none|
|modifier|string¦null|false|none||none|
|modifyDate|string(date-time)¦null|false|none||none|
|lastLoginDate|string(date-time)¦null|false|none||none|
|lastModifyPwdDate|string(date-time)¦null|false|none||none|
|remark|string¦null|false|none||none|
|orderNo|integer(int32)¦null|false|none||none|
|deptIds|string¦null|false|none||none|
|roleIds|string¦null|false|none||none|
|postId|string¦null|false|none||none|
<h2 id="tocS_Sys_UserAuth">Sys_UserAuth</h2>
<a id="schemasys_userauth"></a>
<a id="schema_Sys_UserAuth"></a>
<a id="tocSsys_userauth"></a>
<a id="tocssys_userauth"></a>
```json
{
"id": 0,
"userId": 0,
"authUserIds": "string",
"menuId": 0,
"tableName": "string",
"enable": 0,
"createID": 0,
"creator": "string",
"createDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|id|integer(int32)|true|none||none|
|userId|integer(int32)|true|none||none|
|authUserIds|string|true|none||none|
|menuId|integer(int32)¦null|false|none||none|
|tableName|string¦null|false|none||none|
|enable|integer(int32)|true|none||none|
|createID|integer(int32)¦null|false|none||none|
|creator|string¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
|modifyID|integer(int32)¦null|false|none||none|
|modifier|string¦null|false|none||none|
|modifyDate|string(date-time)¦null|false|none||none|
<h2 id="tocS_Sys_WorkFlowTableStep">Sys_WorkFlowTableStep</h2>
<a id="schemasys_workflowtablestep"></a>
<a id="schema_Sys_WorkFlowTableStep"></a>
<a id="tocSsys_workflowtablestep"></a>
<a id="tocssys_workflowtablestep"></a>
```json
{
"sys_WorkFlowTableStep_Id": "2d2103b7-c487-4551-80c6-b50dda243566",
"workFlowTable_Id": "656d990c-99cf-47f5-8f2a-4a40db692e63",
"workFlow_Id": "7d5265b6-2489-42aa-bb4c-31926af6420a",
"stepId": "string",
"stepName": "string",
"stepType": 0,
"stepValue": "string",
"orderId": 0,
"remark": "string",
"createDate": "2019-08-24T14:15:22Z",
"createID": 0,
"creator": "string",
"enable": 0,
"modifier": "string",
"modifyDate": "2019-08-24T14:15:22Z",
"modifyID": 0,
"auditId": 0,
"auditor": "string",
"auditStatus": 0,
"auditDate": "2019-08-24T14:15:22Z",
"stepAttrType": "string",
"parentId": "string",
"nextStepId": "string",
"weight": 0,
"auditMethod": 0,
"formOptions": "string",
"sourceType": "string",
"attachFile": "string",
"attachType": "string",
"stepEditForm": "string",
"attachQty": 0
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|sys_WorkFlowTableStep_Id|string(uuid)|true|none||none|
|workFlowTable_Id|string(uuid)|true|none||none|
|workFlow_Id|string(uuid)¦null|false|none||none|
|stepId|string¦null|false|none||none|
|stepName|string¦null|false|none||none|
|stepType|integer(int32)¦null|false|none||none|
|stepValue|string¦null|false|none||none|
|orderId|integer(int32)¦null|false|none||none|
|remark|string¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
|createID|integer(int32)¦null|false|none||none|
|creator|string¦null|false|none||none|
|enable|integer(int32)¦null|false|none||none|
|modifier|string¦null|false|none||none|
|modifyDate|string(date-time)¦null|false|none||none|
|modifyID|integer(int32)¦null|false|none||none|
|auditId|integer(int32)¦null|false|none||none|
|auditor|string¦null|false|none||none|
|auditStatus|integer(int32)¦null|false|none||none|
|auditDate|string(date-time)¦null|false|none||none|
|stepAttrType|string¦null|false|none||none|
|parentId|string¦null|false|none||none|
|nextStepId|string¦null|false|none||none|
|weight|integer(int32)¦null|false|none||none|
|auditMethod|integer(int32)¦null|false|none||none|
|formOptions|string¦null|false|none||none|
|sourceType|string¦null|false|none||none|
|attachFile|string¦null|false|none||none|
|attachType|string¦null|false|none||none|
|stepEditForm|string¦null|false|none||none|
|attachQty|integer(int32)¦null|false|none||none|
<h2 id="tocS_UserPermissions">UserPermissions</h2>
<a id="schemauserpermissions"></a>
<a id="schema_UserPermissions"></a>
<a id="tocSuserpermissions"></a>
<a id="tocsuserpermissions"></a>
```json
{
"id": 0,
"pid": 0,
"text": "string",
"isApp": true,
"actions": [
{
"action_Id": 0,
"menu_Id": 0,
"text": "string",
"value": "string"
}
],
"authMenuData": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|id|integer(int32)|false|none||none|
|pid|integer(int32)|false|none||none|
|text|string¦null|false|none||none|
|isApp|boolean|false|none||none|
|actions|[[Sys_Actions](#schemasys_actions)]¦null|false|none||none|
|authMenuData|string¦null|false|none||none|
<h2 id="tocS_Warehouse_Alert">Warehouse_Alert</h2>
<a id="schemawarehouse_alert"></a>
<a id="schema_Warehouse_Alert"></a>
<a id="tocSwarehouse_alert"></a>
<a id="tocswarehouse_alert"></a>
```json
{
"alertId": "a9367074-b5c3-42c4-9be4-be129f43577e",
"area": "string",
"chargePerson": "string",
"checkResult": "string",
"checkPerson": "string",
"checkTime": "2019-08-24T14:15:22Z",
"createDate": "2019-08-24T14:15:22Z",
"message": "string",
"result": "string",
"type": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|alertId|string(uuid)|true|none||none|
|area|string¦null|false|none||none|
|chargePerson|string¦null|false|none||none|
|checkResult|string¦null|false|none||none|
|checkPerson|string¦null|false|none||none|
|checkTime|string(date-time)¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
|message|string¦null|false|none||none|
|result|string¦null|false|none||none|
|type|string¦null|false|none||none|
<h2 id="tocS_warehouse_cars">warehouse_cars</h2>
<a id="schemawarehouse_cars"></a>
<a id="schema_warehouse_cars"></a>
<a id="tocSwarehouse_cars"></a>
<a id="tocswarehouse_cars"></a>
```json
{
"carId": 0,
"carNumber": "string",
"carType": "string",
"buyTime": "2019-08-24T14:15:22Z",
"serviceLife": 0,
"serviceInterval": "string",
"status": "string",
"memo": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|carId|integer(int32)|true|none||none|
|carNumber|string¦null|false|none||none|
|carType|string¦null|false|none||none|
|buyTime|string(date-time)¦null|false|none||none|
|serviceLife|integer(int32)¦null|false|none||none|
|serviceInterval|string¦null|false|none||none|
|status|string¦null|false|none||none|
|memo|string¦null|false|none||none|
<h2 id="tocS_warehouse_carvisitor">warehouse_carvisitor</h2>
<a id="schemawarehouse_carvisitor"></a>
<a id="schema_warehouse_carvisitor"></a>
<a id="tocSwarehouse_carvisitor"></a>
<a id="tocswarehouse_carvisitor"></a>
```json
{
"id": 0,
"carNumber": "string",
"visitReason": "string",
"entryTime": "2019-08-24T14:15:22Z",
"exitTime": "2019-08-24T14:15:22Z",
"photo": "string",
"allowArea": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|id|integer(int32)|true|none||none|
|carNumber|string¦null|false|none||none|
|visitReason|string¦null|false|none||none|
|entryTime|string(date-time)¦null|false|none||none|
|exitTime|string(date-time)¦null|false|none||none|
|photo|string¦null|false|none||none|
|allowArea|string¦null|false|none||none|
<h2 id="tocS_warehouse_environmentvariablevalue">warehouse_environmentvariablevalue</h2>
<a id="schemawarehouse_environmentvariablevalue"></a>
<a id="schema_warehouse_environmentvariablevalue"></a>
<a id="tocSwarehouse_environmentvariablevalue"></a>
<a id="tocswarehouse_environmentvariablevalue"></a>
```json
{
"id": 0,
"environmentVariableId": 0,
"value": 0.1,
"onlineStatus": 0,
"createDate": "2019-08-24T14:15:22Z"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|id|integer(int32)|true|none||none|
|environmentVariableId|integer(int32)¦null|false|none||none|
|value|number(double)¦null|false|none||none|
|onlineStatus|integer(int32)¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
<h2 id="tocS_warehouse_safenotify">warehouse_safenotify</h2>
<a id="schemawarehouse_safenotify"></a>
<a id="schema_warehouse_safenotify"></a>
<a id="tocSwarehouse_safenotify"></a>
<a id="tocswarehouse_safenotify"></a>
```json
{
"id": 0,
"title": "string",
"content": "string",
"creator": "string",
"createDate": "2019-08-24T14:15:22Z"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|id|integer(int32)|true|none||none|
|title|string¦null|false|none||none|
|content|string¦null|false|none||none|
|creator|string¦null|false|none||none|
|createDate|string(date-time)¦null|false|none||none|
<h2 id="tocS_warehouse_visitor">warehouse_visitor</h2>
<a id="schemawarehouse_visitor"></a>
<a id="schema_warehouse_visitor"></a>
<a id="tocSwarehouse_visitor"></a>
<a id="tocswarehouse_visitor"></a>
```json
{
"id": 0,
"trueName": "string",
"idCardNumber": "string",
"visitReason": "string",
"interviewee": 0,
"entryTime": "2019-08-24T14:15:22Z",
"exitTime": "2019-08-24T14:15:22Z",
"photo": "string",
"allowArea": "string"
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|id|integer(int32)|true|none||none|
|trueName|string¦null|false|none||none|
|idCardNumber|string¦null|false|none||none|
|visitReason|string¦null|false|none||none|
|interviewee|integer(int32)¦null|false|none||none|
|entryTime|string(date-time)¦null|false|none||none|
|exitTime|string(date-time)¦null|false|none||none|
|photo|string¦null|false|none||none|
|allowArea|string¦null|false|none||none|
<h2 id="tocS_StringStringValuesKeyValuePair">StringStringValuesKeyValuePair</h2>
<a id="schemastringstringvalueskeyvaluepair"></a>
<a id="schema_StringStringValuesKeyValuePair"></a>
<a id="tocSstringstringvalueskeyvaluepair"></a>
<a id="tocsstringstringvalueskeyvaluepair"></a>
```json
{
"key": "string",
"value": [
"string"
]
}
```
### 属性
|名称|类型|必选|约束|中文名|说明|
|---|---|---|---|---|---|
|key|string¦null|false|none||none|
|value|[string]|false|none||none|