export type MarkItem = { mark_id?: string; project_id: string; name: string; color: string; is_sys_default?: 1 | -1; is_default_mark?: 1 | -1; } & { no_save?: boolean; editing?: boolean; }; export type CustomAttributeItem = { attribute_id: string; project_id: string; field_name: string; field_type: number; enable: 1 | -1; tooltip: string; sort: number; extra: { key: string; label: string; value: string; }[]; open_api_field: string; };