fix: id兼容, 通知入口
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m0s

This commit is contained in:
luo
2026-07-28 15:19:29 +08:00
parent 0e8a11430a
commit 261f5f2853
21 changed files with 271 additions and 71 deletions

View File

@@ -34,7 +34,7 @@ export class AccountService extends BaseService {
*/
static createAccount(
data: CreatePlatformAccountParams
): Promise<BaseResponse<{ ID?: number; id?: number }>> {
): Promise<BaseResponse<{ id?: number; ID?: number }>> {
return this.create('/api/admin/accounts', data)
}