Преглед изворни кода

feat(types): 修改IProcedureItem和IProcedureProcess中的sectorType

LuoHaoxuan пре 3 година
родитељ
комит
3265fcdb33
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      types/src/interface/process.ts

+ 2 - 2
types/src/interface/process.ts

@@ -167,7 +167,7 @@ export interface IProcedureProcess {
   referenceID: string;
   processCorrelationID: string;
   name: string;
-  sectorType: string;
+  sectorType: SectorType;
   participantInfo?: IProcedureParticipantInfo;
   conditionInfo?: IConditionInfoItem[];
 }
@@ -180,7 +180,7 @@ export interface IProcedureItem {
   executorID?: string;
   members?: executorMember[];
   approvalWay?: string;
-  nextProcessSectorType?: string;
+  nextProcessSectorType?: SectorType;
 }
 
 export interface IApproval {