mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-18 01:25:28 +08:00
25 lines
680 B
HTTP
25 lines
680 B
HTTP
### 获取修改日志记录列表
|
|
GET {{baseUrl}}/modify-log-record/list?entityType=test_table&entityId=1&formCode=formCode1
|
|
Token: {{token}}
|
|
|
|
### 批量创建修改日志记录
|
|
POST {{baseUrl}}/modify-log-record/batchCreate
|
|
Content-Type: application/json
|
|
Token: {{token}}
|
|
|
|
[
|
|
{
|
|
"entityType": "test_table",
|
|
"entityId": "1",
|
|
"formCode": "formCode1",
|
|
"description": "测试修改日志",
|
|
"fieldChineseName": "字段中文名",
|
|
"fieldEnglishName": "fieldEnglishName",
|
|
"oldValue": "旧值",
|
|
"newValue": "新值",
|
|
"operator": 1001,
|
|
"operatorName": "张三",
|
|
"operationTime": "2023-05-09 10:00:00",
|
|
"serviceName": "booksflow-form"
|
|
}
|
|
] |