Browse Source

refactor(types): 将NoticeFormData接口中的类型从特定类型改为字符串类型

yz 1 month ago
parent
commit
b69136f45a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/api/types/announcement.d.ts

+ 3 - 3
src/api/types/announcement.d.ts

@@ -117,9 +117,9 @@ export interface NoticeFormData {
   orgId: number;
   orgCode: string;
   orgName?: string;
-  visibleRoles: VisibleRolesMask;
-  brandScope?: BrandScope;
-  customerBlacklist?: Array<CustomerBlacklistItem>;
+  visibleRoles: string;
+  brandScope?: string;
+  customerBlacklist?: string;
   remark?: string;
   status?: AnnouncementStatus;
 }