role info need to be in user model for now

This commit is contained in:
Tan Jiang 2016-06-02 12:07:30 +08:00
parent 886fb8eb67
commit 1dcb19b519
2 changed files with 6 additions and 6 deletions

View File

@ -29,11 +29,11 @@ type AccessLog struct {
GUID string `orm:"column(GUID)" json:"guid"`
Operation string `orm:"column(operation)" json:"operation"`
OpTime time.Time `orm:"column(op_time)" json:"op_time"`
Username string
Keywords string
Username string `json:"username"`
Keywords string `json:"keywords"`
BeginTime time.Time
BeginTimestamp int64
BeginTimestamp int64 `json:"begin_timestamp"`
EndTime time.Time
EndTimestamp int64
EndTimestamp int64 `json:"end_timestamp"`
}

View File

@ -28,8 +28,8 @@ type User struct {
Realname string `orm:"column(realname)" json:"realname"`
Comment string `orm:"column(comment)" json:"comment"`
Deleted int `orm:"column(deleted)" json:"deleted"`
// Rolename string `json:role_name`
// RoleID int `json:"role_id"`
Rolename string `json:role_name`
RoleID int `json:"role_id"`
// RoleList []Role `json:"role_list"`
HasAdminRole int `orm:"column(sysadmin_flag)" json:"has_admin_role"`
ResetUUID string `orm:"column(reset_uuid)" json:"reset_uuid"`