更新数据库,增加apifox实体json

This commit is contained in:
2025-10-06 16:19:35 +08:00
parent 1970865acb
commit a3e8687b31
20 changed files with 936 additions and 29 deletions

View File

@@ -0,0 +1,38 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BaseDTO",
"description": "基础数据传输对象",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "主键ID",
"example": "1234567890123456789"
},
"createTime": {
"type": "string",
"format": "date-time",
"description": "创建时间",
"example": "2025-10-05T16:00:00Z"
},
"updateTime": {
"type": "string",
"format": "date-time",
"description": "更新时间",
"example": "2025-10-05T16:30:00Z"
},
"deleteTime": {
"type": "string",
"format": "date-time",
"description": "删除时间",
"example": null
},
"deleted": {
"type": "boolean",
"description": "是否删除",
"default": false,
"example": false
}
},
"required": ["id", "createTime", "updateTime", "deleted"]
}