2023-01-13 20:36:44 +08:00

11 行
231 B
Go

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"`
Type int `json:"type"`
}