fix(authorization): 修复 queryAuthorizations 返回类型缺少 officePhotoUrls
application service 的 queryAuthorizations 方法返回类型声明中 缺少 officePhotoUrls 字段,导致 TypeScript 编译报错。 实际数据映射已正确包含该字段,只是类型注解遗漏。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
ac15d6682a
commit
24fe10ee36
|
|
@ -3859,6 +3859,7 @@ export class AuthorizationApplicationService {
|
|||
authorizedAt: Date | null
|
||||
revokedAt: Date | null
|
||||
revokeReason: string | null
|
||||
officePhotoUrls: string[]
|
||||
}>
|
||||
total: number
|
||||
page: number
|
||||
|
|
|
|||
Loading…
Reference in New Issue