소스 검색

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 {