feat: sale add create user

This commit is contained in:
zzw
2026-09-02 09:47:34 +08:00
parent ad4bc7de85
commit 540f74f9b7
39 changed files with 2023 additions and 282 deletions
+20
View File
@@ -0,0 +1,20 @@
package dao
import "lone-services/pkg/utils"
type Token struct {
Token string `json:"token"`
Refresh string `json:"refresh"`
Info UserLoginSession `json:"info"`
}
type UserLoginSession struct {
Id int64 `json:"id"`
Name string `json:"name"`
Avatar string `json:"avatar"`
Mobile string `json:"mobile"`
Gender uint8 `json:"gender"`
Birthday string `json:"birthday"`
Status uint8 `json:"status"`
LastTime utils.CustomTime `json:"last_time"`
}