瀏覽代碼

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

zhangweicheng 3 年之前
父節點
當前提交
248cb8aedc
共有 2 個文件被更改,包括 7 次插入0 次删除
  1. 1 0
      types/src/interface/base.ts
  2. 6 0
      types/src/interface/process.ts

+ 1 - 0
types/src/interface/base.ts

@@ -157,6 +157,7 @@ export enum CptModelName {
   approvalStatus = 'approvalStatus', // 审批状态关系表
   approvalStatus = 'approvalStatus', // 审批状态关系表
   gatherMatter = 'gatherMatter', // 事项-前台
   gatherMatter = 'gatherMatter', // 事项-前台
   gatherStepMatter = 'gatherStepMatter', // 步骤事项关系表
   gatherStepMatter = 'gatherStepMatter', // 步骤事项关系表
+  conditionSetting = 'conditionSetting',
 }
 }
 
 
 // 无数据表的模块名称的枚举
 // 无数据表的模块名称的枚举

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

@@ -366,3 +366,9 @@ export interface IBusinessApprovalItem {
   createdID?: string;
   createdID?: string;
   createTime?: string;
   createTime?: string;
 }
 }
+
+export interface IConditionSetting {
+  ID: string;
+  gatherID: string;
+  schema?: string;
+}