|
@@ -2,7 +2,7 @@ import { BusinessTypeKey, MatterTypeKey } from './subjectUnit';
|
|
|
// 事项
|
|
// 事项
|
|
|
export interface IMatter {
|
|
export interface IMatter {
|
|
|
ID: string;
|
|
ID: string;
|
|
|
- subjectID: string;
|
|
|
|
|
|
|
+ gatherID: string;
|
|
|
businessType: BusinessTypeKey;
|
|
businessType: BusinessTypeKey;
|
|
|
matterType: MatterTypeKey;
|
|
matterType: MatterTypeKey;
|
|
|
parentID: string;
|
|
parentID: string;
|
|
@@ -12,13 +12,13 @@ export interface IMatter {
|
|
|
assembly: string[];
|
|
assembly: string[];
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-export interface ISubjectMatter extends IMatter {
|
|
|
|
|
|
|
+export interface IGatherMatter extends IMatter {
|
|
|
businessID: string;
|
|
businessID: string;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export interface IStepMatter {
|
|
export interface IStepMatter {
|
|
|
ID: string;
|
|
ID: string;
|
|
|
- subjectID: string;
|
|
|
|
|
|
|
+ gatherID: string;
|
|
|
businessType: BusinessTypeKey;
|
|
businessType: BusinessTypeKey;
|
|
|
stepID: string;
|
|
stepID: string;
|
|
|
matterID: string;
|
|
matterID: string;
|
|
@@ -27,14 +27,14 @@ export interface IStepMatter {
|
|
|
profilePermission: string[];
|
|
profilePermission: string[];
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-export interface ISubjectStepMatter extends IStepMatter {
|
|
|
|
|
|
|
+export interface IGatherStepMatter extends IStepMatter {
|
|
|
businessID: string;
|
|
businessID: string;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
export interface IYsProfileTemplate {
|
|
export interface IYsProfileTemplate {
|
|
|
ID: string;
|
|
ID: string;
|
|
|
parentID: string;
|
|
parentID: string;
|
|
|
- subjectID: string;
|
|
|
|
|
|
|
+ gatherID: string;
|
|
|
businessType: BusinessTypeKey;
|
|
businessType: BusinessTypeKey;
|
|
|
name: string;
|
|
name: string;
|
|
|
sort: string;
|
|
sort: string;
|
|
@@ -44,6 +44,6 @@ export interface IYsProfileTemplate {
|
|
|
mode: string[];
|
|
mode: string[];
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-export interface ISubjectYsProfileTemplate extends IYsProfileTemplate {
|
|
|
|
|
|
|
+export interface IGatherYsProfileTemplate extends IYsProfileTemplate {
|
|
|
businessID: string;
|
|
businessID: string;
|
|
|
}
|
|
}
|