Add user type.

This commit is contained in:
Yang Luo
2021-04-26 19:00:23 +08:00
parent 4dd0c1a457
commit 0fc7015c61
5 changed files with 17 additions and 0 deletions

View File

@ -28,6 +28,7 @@ type User struct {
CreatedTime string `xorm:"varchar(100)" json:"createdTime"`
Id string `xorm:"varchar(100)" json:"id"`
Type string `xorm:"varchar(100)" json:"type"`
Password string `xorm:"varchar(100)" json:"password"`
PasswordType string `xorm:"varchar(100)" json:"passwordType"`
DisplayName string `xorm:"varchar(100)" json:"displayName"`