2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 19:37:18 +08:00

feat: 数据库管理优化1

This commit is contained in:
耗子
2024-11-27 01:08:14 +08:00
parent 3926bb83c1
commit cd8a10d799
18 changed files with 196 additions and 62 deletions

View File

@@ -19,3 +19,8 @@ type DatabaseServerUpdate struct {
Password string `form:"password" json:"password"`
Remark string `form:"remark" json:"remark"`
}
type DatabaseServerUpdateRemark struct {
ID uint `form:"id" json:"id" validate:"required,exists=database_servers id"`
Remark string `form:"remark" json:"remark"`
}