更新数据库,增加apifox实体json
This commit is contained in:
38
schoolNewsServ/.doc/apifox/domain/dto/BaseDTO.json
Normal file
38
schoolNewsServ/.doc/apifox/domain/dto/BaseDTO.json
Normal 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user