|
|
@@ -10,8 +10,8 @@ import {
|
|
|
|
|
|
export interface IStdRationChapter {
|
|
|
rationRepId: number; // 标准库的属性
|
|
|
- ID: number; // 补充库的直接用新结构,所以有两种类型
|
|
|
- parentID: number;
|
|
|
+ ID: string; // 补充库的直接用新结构,所以有两种类型
|
|
|
+ parentID: string;
|
|
|
seq: number;
|
|
|
name: string;
|
|
|
explanation?: string; // 说明
|
|
|
@@ -22,7 +22,7 @@ export interface IStdRationChapter {
|
|
|
|
|
|
export interface ICptRationChapter {
|
|
|
name: string;
|
|
|
- ID: { type: string; index: true };
|
|
|
+ ID: string;
|
|
|
seq: number;
|
|
|
parentID: string;
|
|
|
// 以下预留数据,以后开放可用
|
|
|
@@ -317,7 +317,7 @@ export interface IRationInstall {
|
|
|
unifiedSetting: boolean; // 0:false 1:true 按统一设置
|
|
|
}
|
|
|
|
|
|
-export interface IRationItem {
|
|
|
+export interface IRation {
|
|
|
ID: string;
|
|
|
parentID: string;
|
|
|
seq: number;
|
|
|
@@ -382,5 +382,5 @@ export interface IRationItem {
|
|
|
export interface IRations {
|
|
|
projectID: string;
|
|
|
index: number;
|
|
|
- rations: IRationItem[];
|
|
|
+ rations: IRation[];
|
|
|
}
|