| 1234567891011121314151617181920212223242526272829 |
- import { ITreeScm } from './base';
- export interface IStdLabourCoeItem {
- ID: number;
- ParentID: number;
- name: string;
- coe: number;
- }
- export interface IStdLabourCoe {
- ID: number;
- libName: string;
- region: string;
- coes: IStdLabourCoeItem[];
- }
- export interface ILabourCoeItem extends ITreeScm {
- name: string;
- coe: number;
- }
- export interface ILabourCoeFile {
- ID: string;
- projectID: string;
- name: string;
- libID: number;
- libName: string;
- coes: ILabourCoeItem[];
- }
|