1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| {
| "autoMove": true,
| "id": "attrId",
| "name": "taskAttr",
| "desc": "定时任务属性",
| "shareParam": "task_id",
| "shareColumn": "taskId",
| "shareName": "job",
| "newBusinessTypeCd": "BUSINESS_TYPE_SAVE_TASK_ATTR",
| "updateBusinessTypeCd": "BUSINESS_TYPE_UPDATE_TASK_ATTR",
| "deleteBusinessTypeCd": "BUSINESS_TYPE_DELETE_TASK_ATTR",
| "newBusinessTypeCdValue": "560300030001",
| "updateBusinessTypeCdValue": "560300040001",
| "deleteBusinessTypeCdValue": "560300050001",
| "businessTableName": "business_task_attr",
| "tableName": "task_attr",
| "param": {
| "attrId": "attr_id",
| "bId": "b_id",
| "taskId": "task_id",
| "specCd": "spec_cd",
| "value": "value",
| "statusCd": "status_cd",
| "createTime": "create_time",
| "operate": "operate"
| },
| "required": [
| {
|
| "code": "taskId",
| "msg": "任务不能为空"
| },
| {
| "code": "specCd",
| "msg": "任务属性不能为空"
| },
| {
| "code": "value",
| "msg": "任务属性值不能为空"
| }
| ]
| }
|
|