Przeglądaj źródła

feat(types): 添加信息价类型

zhangweicheng 4 lat temu
rodzic
commit
61e666d759
1 zmienionych plików z 26 dodań i 0 usunięć
  1. 26 0
      types/src/interface/infoPrice.ts

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

@@ -20,3 +20,29 @@ export interface IInfoSearch {
   classTree: boolean;
   commonAreaID?: string; // 通用地区ID
 }
+
+export interface IAreaClass {
+  ID: string;
+  parentID: string;
+  seq: string;
+  name: string;
+  areaID: string;
+  libID: string;
+}
+
+export interface IInfoPriceItem {
+  ID: string;
+  libID: string;
+  classID: string; // 分类
+  code: string;
+  name: string;
+  specs: string;
+  unit: string;
+  taxPrice: string; // 含税价格
+  noTaxPrice: string; // 不含税价格
+  // 以下冗余数据为方便前台信息价功能处理
+  period: string; // 期数 eg: 2020-05
+  areaID: string; // 地区
+  compilationID: string; // 费用定额
+  remark: string;
+}