NGTools/uniCloud-aliyun/database/ngTools_DictItem.schema.json

82 lines
1.5 KiB
JSON
Raw Normal View History

2025-11-23 14:30:00 +00:00
{
"bsonType": "object",
"required": [],
"permission": {
"read": true,
"create": true,
"update": true,
"delete": true
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"dictID": {
"description": "字典ID",
"bsonType": "string",
"title": "字典ID",
"trim": "both"
},
"itemValue": {
"description": "字典项值",
"bsonType": "string",
"title": "字典项值",
"trim": "both",
"length": "1024"
},
"itemText": {
"description": "字典项文本",
"bsonType": "string",
"title": "字典项文本",
"trim": "both"
},
"itemColor": {
"description": "字典项颜色",
"bsonType": "string",
"title": "字典项颜色",
"trim": "both"
},
"description": {
"description": "描述",
"bsonType": "string",
"title": "描述",
"trim": "both"
},
"sortOrder": {
"description": "排序",
"bsonType": "string",
"title": "排序",
"trim": "both"
},
"status": {
"description": "状态",
"bsonType": "int",
"title": "状态",
"trim": "both"
},
"createTime": {
"description": "创建时间",
"bsonType": "datetime",
"title": "创建时间",
"trim": "both"
},
"createBy": {
"description": "创建人",
"bsonType": "string",
"title": "创建人",
"trim": "both"
},
"updateTime": {
"description": "更新时间",
"bsonType": "datetime",
"title": "更新时间",
"trim": "both"
},
"updateBy": {
"description": "更新人",
"bsonType": "string",
"title": "更新人",
"trim": "both"
}
}
}