This commit is contained in:
孟帅
2023-05-12 16:20:22 +08:00
parent f30fd885be
commit 9198a53584
52 changed files with 982 additions and 834 deletions

View File

@@ -18,7 +18,6 @@ type AdminMember struct {
Username string `json:"username" description:"帐号"`
PasswordHash string `json:"passwordHash" description:"密码"`
Salt string `json:"salt" description:"密码盐"`
AuthKey string `json:"authKey" description:"授权令牌"`
PasswordResetToken string `json:"passwordResetToken" description:"密码重置令牌"`
Integral float64 `json:"integral" description:"积分"`
Balance float64 `json:"balance" description:"余额"`

View File

@@ -26,7 +26,7 @@ type SysLog struct {
ProvinceId int64 `json:"provinceId" description:"省编码"`
CityId int64 `json:"cityId" description:"市编码"`
ErrorCode int `json:"errorCode" description:"报错code"`
ErrorMsg string `json:"errorMsg" description:"报错信息"`
ErrorMsg string `json:"errorMsg" description:"对外错误提示"`
ErrorData *gjson.Json `json:"errorData" description:"报错日志"`
UserAgent string `json:"userAgent" description:"UA信息"`
TakeUpTime int64 `json:"takeUpTime" description:"请求耗时"`