|
|
@@ -130,7 +130,6 @@ export interface IProCptItem {
|
|
|
lock: LockInfo;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
interface ISubStructuralSegment {
|
|
|
dispName: string;
|
|
|
key: string;
|
|
|
@@ -141,8 +140,11 @@ interface ISubStructuralSegment {
|
|
|
|
|
|
// 结构分布
|
|
|
export interface IStructuralSegment {
|
|
|
- monomerType: string;
|
|
|
- items: ISubStructuralSegment[];
|
|
|
+ compilationID: string;
|
|
|
+ data: {
|
|
|
+ monomerType: string;
|
|
|
+ items: ISubStructuralSegment[];
|
|
|
+ };
|
|
|
}
|
|
|
|
|
|
interface ISubMonomerTemplate {
|
|
|
@@ -152,9 +154,12 @@ interface ISubMonomerTemplate {
|
|
|
isHaveStructuralSegment: string;
|
|
|
}
|
|
|
|
|
|
-//单体模板
|
|
|
+// 单体模板
|
|
|
export interface IMonomerTemplate {
|
|
|
- dispName: string;
|
|
|
- key: string;
|
|
|
- items: ISubMonomerTemplate[];
|
|
|
-}
|
|
|
+ compilationID: string;
|
|
|
+ data: {
|
|
|
+ dispName: string;
|
|
|
+ key: string;
|
|
|
+ items: ISubMonomerTemplate[];
|
|
|
+ };
|
|
|
+}
|