| 123456789101112131415161718192021222324252627 |
- // 超高降效原始数据
- export interface IOverHeight {
- name: string;
- code?: string;
- unit?: string;
- labourRate?: number;
- machineRate?: number;
- labourMachineRate?: number;
- benchmark?: number;
- extra?: number;
- limit?: number;
- }
- // 超高降效子目生成方式
- export enum OverHeightGenerationType {
- SEPARATION = 1, // 对应清单或分部下(默认)
- MEASURE, // 指定措施清单011704001
- SPECIFIC, // 指定具体位置,显示分部分项以及措施项目的树结构显示叶子清单(分项)供勾选
- }
- // 超高降效设置
- export interface IOverHeightSetting {
- // 子目生成方式
- generationType: OverHeightGenerationType;
- // 指定清单ID
- specificBillID?: string;
- }
|