houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
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
43
44
45
46
47
48
49
50
51
52
{
  "table": {
    "id": 10,
    "scene" : 1,
    "parentMenuId" : 888,
    "tableName" : "infra_category",
    "tableComment" : "分类表",
    "moduleName" : "infra",
    "businessName" : "demo",
    "className" : "InfraCategory",
    "classComment" : "分类",
    "author" : "iailab",
    "treeParentColumnId" : 22,
    "treeNameColumnId" : 11
  },
  "columns": [ {
    "columnName" : "id",
    "dataType" : "BIGINT",
    "columnComment" : "编号",
    "primaryKey" : true,
    "javaType" : "Long",
    "javaField" : "id",
    "example" : "1024",
    "updateOperation" : true,
    "listOperationResult" : true
  }, {
    "id" : 11,
    "columnName" : "name",
    "dataType" : "VARCHAR",
    "columnComment" : "名字",
    "javaType" : "String",
    "javaField" : "name",
    "example" : "芋头",
    "createOperation" : true,
    "updateOperation" : true,
    "listOperation" : true,
    "listOperationCondition" : "LIKE",
    "listOperationResult" : true,
    "htmlType" : "input"
  }, {
    "id" : 22,
    "columnName" : "description",
    "dataType" : "VARCHAR",
    "columnComment" : "父编号",
    "javaType" : "Long",
    "javaField" : "parentId",
    "example" : "2048",
    "createOperation" : true,
    "updateOperation" : true,
    "listOperationResult" : true
  } ]
}