编辑数据表
POST
/adminapi/tools.generator/edit请求参数
Body 参数application/json
id
integer
表id
table_name
string
表名称
table_comment
string
表描述
author
string
作者
remark
string
备注
template_type
integer
模板类型
0-单表(curd) 1-树表(curd)
generate_type
integer
生成方式
0-压缩包下载 1-生成到模块
module_name
string
模块名
class_dir
string
类目录名
class_comment
string
类描述
table_column
array [object {16}]
表字段
id
integer
表字段id
table_id
integer
表id
column_name
string
字段名称
column_comment
string
字段描述
column_type
string
字段类型
is_required
integer
是否必填
0-非必填 1-必填
is_pk
integer
是否为主键
is_insert
integer
是否为插入字段
0-不是 1-是
is_update
integer
是否为更新字段
0-不是 1-是
is_lists
integer
是否为列表字段
0-不是 1-是
is_query
integer
是否为查询字段
0-不是 1-是
query_type
string
查询类型
view_type
string
显示类型
dict_type
string
字典类型
create_time
string
必需
update_time
string
必需
menu
object
菜单配置
pid
integer
上级菜单id
type
integer
菜单类型
0-手动构建 1-自动构建
name
string
菜单名称
delete
object
删除配置
type
integer
删除类型
0-物理删除 1-软删除
name
string
删除字段名
relations
array [object {5}]
关联配置
name
string
关联名称
model
string
关联模型
type
string
关联类型
[一对一.has_one] [一对多, has_many ]
local_key
string
关联主键
foreign_key
string
关联外键
tree
object
树表配置
tree_id
string
树主键id
tree_pid
string
树父级id
tree_name
string
树名称
示例
{
"id": 0,
"table_name": "string",
"table_comment": "string",
"author": "string",
"remark": "string",
"template_type": 0,
"generate_type": 0,
"module_name": "string",
"class_dir": "string",
"class_comment": "string",
"table_column": [
{
"id": 0,
"table_id": 0,
"column_name": "string",
"column_comment": "string",
"column_type": "string",
"is_required": 0,
"is_pk": 0,
"is_insert": 0,
"is_update": 0,
"is_lists": 0,
"is_query": 0,
"query_type": "string",
"view_type": "string",
"dict_type": "string",
"create_time": "string",
"update_time": "string"
}
],
"menu": {
"pid": 0,
"type": 0,
"name": "string"
},
"delete": {
"type": 0,
"name ": "string"
},
"relations": [
{
"name": "string",
"model": "string",
"type": "string",
"local_key": "string",
"foreign_key": "string"
}
],
"tree": {
"tree_id": "string",
"tree_pid": "string",
"tree_name": "string"
}
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
show
integer
必需
msg
string
必需
data
array[string]
必需
示例成功示例
{
"code": 1,
"show": 1,
"msg": "操作成功",
"data": []
}
最后修改时间: 2 年前