Prechádzať zdrojové kódy

refactor(types): 补充辅助定额、标注辅助定额合并

vian 4 rokov pred
rodič
commit
8c06218bae
1 zmenil súbory, kde vykonal 3 pridanie a 4 odobranie
  1. 3 4
      types/src/interface/ration.ts

+ 3 - 4
types/src/interface/ration.ts

@@ -75,15 +75,14 @@ export interface IBaseRationAss {
   carryBit: string; // 进位方式
   minValue?: string; // 最小值
   maxValue?: string; // 最大值
-}
-
-// 标准定额辅助
-export interface IStdRationAss extends IBaseRationAss {
   paramName?: string; // 参数名称
   param?: string; // 参数
   thirdRationCode?: string; // 第三定额
 }
 
+// 标准定额辅助
+export type IStdRationAss = IBaseRationAss;
+
 // 补充定额辅助
 export type ICptRationAss = IBaseRationAss;