直接完成

This commit is contained in:
2022-11-23 20:56:28 +08:00
commit b924e94c63
21 changed files with 829 additions and 0 deletions

9
data/po/user.go Normal file
View File

@@ -0,0 +1,9 @@
package po
type User struct {
ID int `json:"id"`
Username string `json:"username"`
RealName string `json:"real_name"`
Credit int `json:"credit"`
RoleID int `json:"role_id"`
}