Explorar el Código

Merge branch 'master' of 192.168.1.41:SmartCost/SCCommon

lipk hace 3 años
padre
commit
33df519fe7
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. 12 0
      types/src/interface/business.ts

+ 12 - 0
types/src/interface/business.ts

@@ -58,3 +58,15 @@ export interface IBusinessProcessFee {
   incRate: number;
   decRate: number;
 }
+
+// 拷贝业务项目列表
+export interface ICopyBusinessPrjItem {
+  ID: string;
+  name: string;
+  approval: string;
+  status: string;
+  institution: string;
+  creator: string;
+  createDate: string;
+  constructions?: { ID: string; name: string }[];
+}