Przeglądaj źródła

feat(types): 新增budgetData接口

LuoHaoxuan 3 lat temu
rodzic
commit
77015d67dc
2 zmienionych plików z 29 dodań i 0 usunięć
  1. 28 0
      types/src/interface/budgetData.ts
  2. 1 0
      types/src/interface/index.ts

+ 28 - 0
types/src/interface/budgetData.ts

@@ -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;
+}

+ 1 - 0
types/src/interface/index.ts

@@ -33,3 +33,4 @@ export * from './subjectUnit';
 export * from './subjectExecutor';
 export * from './matter';
 export * from './loginLog';
+export * from './budgetData';