| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import { BusinessTypeKey, MatterTypeKey } from './subjectUnit';
- // 事项
- export interface IMatter {
- ID: string;
- gatherID: string;
- businessType: BusinessTypeKey;
- matterType: MatterTypeKey;
- parentID: string;
- name: string;
- sort: string;
- formSchema: any;
- assembly: string[];
- }
- export interface IGatherMatter extends IMatter {
- businessID: string;
- }
- export interface IStepMatter {
- ID: string;
- gatherID: string;
- businessType: BusinessTypeKey;
- stepID: string;
- matterID: string;
- formPermission: string[];
- zjPermission: string[];
- profilePermission: string[];
- }
- export interface IGatherStepMatter extends IStepMatter {
- businessID: string;
- }
- export interface IYsProfileTemplate {
- ID: string;
- parentID: string;
- gatherID: string;
- businessType: BusinessTypeKey;
- name: string;
- sort: string;
- enable: boolean;
- required: boolean;
- folder: boolean;
- mode: string[];
- }
- export interface IGatherYsProfileTemplate extends IYsProfileTemplate {
- businessID: string;
- }
|