|
|
@@ -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;
|
|
|
|