Standardization

This commit is contained in:
akrike
2025-07-05 11:50:41 +08:00
parent efcf8d9ca6
commit 0fae7cac25
19 changed files with 343 additions and 286 deletions

View File

@@ -17,3 +17,12 @@ type User struct {
func (*User) TableName() string {
return "users"
}
type LoginHandlerReq struct {
Account string `form:"account"`
Password string `form:"password"`
}
type DeleteUserReq struct {
Account string `form:"account"`
}