|
@@ -0,0 +1,28 @@
|
|
|
|
|
+export interface IBudgetData {
|
|
|
|
|
+ ID: string;
|
|
|
|
|
+ businessID: string;
|
|
|
|
|
+ gcName?: string;
|
|
|
|
|
+ projectType?: string;
|
|
|
|
|
+ projectCode?: string;
|
|
|
|
|
+ bScaleVolume?: number;
|
|
|
|
|
+ bScaleUnit?: string;
|
|
|
|
|
+ gcType?: string;
|
|
|
|
|
+ structureType?: string;
|
|
|
|
|
+ area?: string;
|
|
|
|
|
+ gcAddress?: string;
|
|
|
|
|
+ expendType?: string;
|
|
|
|
|
+ ministry?: string;
|
|
|
|
|
+ ysbzCompany?: string;
|
|
|
|
|
+ institutionID: string;
|
|
|
|
|
+ reviewer?: string;
|
|
|
|
|
+ reviewerMobile?: string;
|
|
|
|
|
+ reviewerMail?: string;
|
|
|
|
|
+ reviewerLandline?: string;
|
|
|
|
|
+ projectContact?: string;
|
|
|
|
|
+ projectContactMobile?: string;
|
|
|
|
|
+ projectContactMail?: string;
|
|
|
|
|
+ projectContactLandline?: string;
|
|
|
|
|
+ reportingInstructions?: string;
|
|
|
|
|
+ approvalType?: string;
|
|
|
|
|
+ noEditField?: string;
|
|
|
|
|
+}
|