Przeglądaj źródła

feat(types): error code

qinlaiqiao 4 lat temu
rodzic
commit
ecfc8dda8a
1 zmienionych plików z 34 dodań i 0 usunięć
  1. 34 0
      types/src/interface/infoPrice.ts

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

@@ -12,3 +12,37 @@ export interface IInfoLib {
   compilationID: string;
   createDate: number;
 }
+
+export interface IInfoSearch {
+  areaID: string;
+  period: string;
+  keyword: string;
+  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;
+}