package model // AccountRoleResponse 账号-角色关联响应 type AccountRoleResponse struct { ID uint `json:"id"` AccountID uint `json:"account_id"` RoleID uint `json:"role_id"` Status int `json:"status"` CreatedAt string `json:"created_at"` } // AccountRolesResponse 账号的角色列表响应 type AccountRolesResponse struct { AccountID uint `json:"account_id"` Roles []*RoleResponse `json:"roles"` }