2025-12-05 09:59:57 +08:00
|
|
|
package account
|
2025-12-04 17:09:04 +08:00
|
|
|
|
2025-12-05 14:25:39 +08:00
|
|
|
type Account struct {
|
2025-12-04 17:09:04 +08:00
|
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
|
|
|
Username string `gorm:"unique" json:"username"`
|
|
|
|
|
Password string `json:"-"`
|
2025-12-05 14:03:57 +08:00
|
|
|
Token string `json:"-"`
|
2025-12-04 17:09:04 +08:00
|
|
|
}
|