用户实体创建
更新时间:2024-11-04
1、接口地址:POST {IP}:{PORT}/open/v{versionId}/user/entity/create
2、入参【请求的body中】
参数名 | 类型 | 是否可空 | 备注 |
---|---|---|---|
name | string | 否 | 实体名称 |
nameZh | string | 否 | 实体中文名称 |
description | string | 是 | 描述 |
3、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | T | 返回数据 | |
id | string | data | id |
示例:
{
"time":1572405713583,
"data":{
"id":"xxxxxxxxxxxxxxxxxxxxxxx"
},
"code":200,
"msg":"OK"
}