瀏覽代碼

feat(types): 安装费排序

chenshilong 4 年之前
父節點
當前提交
9ddfc02fb6
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      types/src/interface/installation.ts

+ 4 - 2
types/src/interface/installation.ts

@@ -17,6 +17,7 @@ export interface IStdInstallSection {
   name: string;
   feeRule: IBaseFeeRule[];
   deleted: boolean;
+  seq: number; // 排序
 }
 // 费用项
 export interface IStdInstallFeeItem {
@@ -27,6 +28,7 @@ export interface IStdInstallFeeItem {
   position: string; // 记取位置
   section: [];
   deleted: boolean;
+  seq: number; // 排序
 }
 
 // 安装增加费-费用规则
@@ -43,7 +45,7 @@ export interface IInstallSection {
   feeItemID: string;
   feeRuleID: string;
   name: string;
-  seq: Number; // 排序
+  seq: number; // 排序
 }
 
 // 安装增加费-费用项
@@ -54,7 +56,7 @@ export interface IInstallFeeItem {
   position: string; // 记取位置
   billID?: string; // 记取位置对应的清单ID
   isCalc: boolean; // 是否记取
-  seq: Number; // 排序
+  seq: number; // 排序
 }
 
 export enum FeeItemCalcType {