chore: initial commit
This commit is contained in:
15
frontend/packages/lib-shared/models/view.ts
Normal file
15
frontend/packages/lib-shared/models/view.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { FilterForm, FilterResult } from '@cordys/web/src/components/pure/crm-advance-filter/type';
|
||||
|
||||
export interface ViewParams extends FilterResult {
|
||||
id?: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface ViewItem extends FilterForm {
|
||||
id: string;
|
||||
name: string;
|
||||
fixed: boolean;
|
||||
enable: boolean;
|
||||
type?: string;
|
||||
optionMap?: Record<string, any>;
|
||||
}
|
||||
Reference in New Issue
Block a user