重新初始化项目

This commit is contained in:
2023-04-27 15:56:12 +08:00
parent 10546eb629
commit d6e256ef9e
50 changed files with 1255 additions and 308 deletions

5
model/cache/user.go vendored
View File

@@ -4,9 +4,8 @@ import "encoding/json"
// UserInfo 登录用的用户信息结构体
type UserInfo struct {
UserType string `json:"userType"` // 用户类型
RoleCodes string `json:"roleCodes"` // 角色代码
UserId string `json:"userId"` // 用户Id
UserType string `json:"userType"` // 用户类型
UserId int `json:"userId"` // 用户Id
}
// String 实现Stringer接口