浏览代码

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 {