|
@@ -129,3 +129,32 @@ export interface IProCptItem {
|
|
|
// 锁信息
|
|
// 锁信息
|
|
|
lock: LockInfo;
|
|
lock: LockInfo;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+interface ISubStructuralSegment {
|
|
|
|
|
+ dispName: string;
|
|
|
|
|
+ key: string;
|
|
|
|
|
+ type: string;
|
|
|
|
|
+ subItems?: ISubStructuralSegment[];
|
|
|
|
|
+ property?: any;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 结构分布
|
|
|
|
|
+export interface IStructuralSegment {
|
|
|
|
|
+ monomerType: string;
|
|
|
|
|
+ items: ISubStructuralSegment[];
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+interface ISubMonomerTemplate {
|
|
|
|
|
+ dispName: string;
|
|
|
|
|
+ key: string;
|
|
|
|
|
+ monomerType: string;
|
|
|
|
|
+ isHaveStructuralSegment: string;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+//单体模板
|
|
|
|
|
+export interface IMonomerTemplate {
|
|
|
|
|
+ dispName: string;
|
|
|
|
|
+ key: string;
|
|
|
|
|
+ items: ISubMonomerTemplate[];
|
|
|
|
|
+}
|