|
@@ -349,3 +349,18 @@ export interface ICptRationTreeData {
|
|
|
ownerID: string; // 企业或用户
|
|
ownerID: string; // 企业或用户
|
|
|
treeData: ICptRationTree[];
|
|
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;
|
|
|
|
|
+}
|