Просмотр исходного кода

feat(types): 添加信息价选项

zhangweicheng 4 лет назад
Родитель
Сommit
7889de44ba
2 измененных файлов с 15 добавлено и 0 удалено
  1. 1 0
      types/src/interface/index.ts
  2. 14 0
      types/src/interface/infoPrice.ts

+ 1 - 0
types/src/interface/index.ts

@@ -19,3 +19,4 @@ export * from './configMaterial';
 export * from './socket';
 export * from './error';
 export * from './enterprise';
+export * from './infoPrice';

+ 14 - 0
types/src/interface/infoPrice.ts

@@ -0,0 +1,14 @@
+export interface IArea {
+  serialNo: number;
+  ID: string;
+  compilationID: string;
+  name: string;
+}
+
+export interface IInfoLib {
+  ID: string;
+  name: string;
+  period: string; // 期数 eg: 2020年-05月
+  compilationID: string;
+  createDate: number;
+}