Browse Source

feat(types): 新增插入补充定额的接口

vian 4 years ago
parent
commit
0130986915
1 changed files with 15 additions and 0 deletions
  1. 15 0
      types/src/interface/ration.ts

+ 15 - 0
types/src/interface/ration.ts

@@ -349,3 +349,18 @@ export interface ICptRationTreeData {
   ownerID: string; // 企业或用户
   treeData: ICptRationTree[];
 }
+
+// 新增补充定额接口传输的数据接口
+export interface IInsertCptRation {
+  ID: string;
+  sectionId: string;
+  code: string;
+  name?: string;
+  unit?: string;
+  caption?: string;
+  feeType?: number;
+  labourPrice: number;
+  materialPrice: number;
+  machinePrice: number;
+  basePrice: number;
+}