Merge branch 'api-attribute-rename' of https://github.com/vmware/harbor into api-attribute-rename

This commit is contained in:
kunw 2016-06-02 12:30:57 +08:00
commit b5c1985247
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"`