Kaynağa Gözat

feat(types): 完善IProcedureItem接口

LuoHaoxuan 3 yıl önce
ebeveyn
işleme
b6a1051797
1 değiştirilmiş dosya ile 3 ekleme ve 0 silme
  1. 3 0
      types/src/interface/process.ts

+ 3 - 0
types/src/interface/process.ts

@@ -266,6 +266,7 @@ export interface IConditionInfoItem<T = IProcedureProcess> {
 
 export interface IApostilleInfo {
   parentProcessID: string;
+  parentProcessReferenceID: string;
   nextProcessID?: string;
   afterApostille?: string;
 }
@@ -311,6 +312,8 @@ export interface IProcedureItem {
   addition?: string;
   reduction?: string;
   configure?: IParticipantConfig[];
+  sectorType?: 'apostille' | 'condition' | 'approval';
+  apostilleInfo: IApostilleInfo;
 }
 
 export interface IApproval {