Przeglądaj źródła

feat(types): 子目增加费添加计取属性

zhangweicheng 4 lat temu
rodzic
commit
877f9b450a
1 zmienionych plików z 1 dodań i 2 usunięć
  1. 1 2
      types/src/interface/increaseFee.ts

+ 1 - 2
types/src/interface/increaseFee.ts

@@ -1,10 +1,9 @@
-import { IAny } from './base';
-
 export interface IIncreaseSettingItem {
   ID: string;
   name: string;
   base: string;
   coe: number;
+  isCalc?: boolean; // 是否计取
   scope?: { [ID: string]: boolean };
 }