/** * @description: Microflow */ export interface MicroflowManagementListModel { id?: string // 主键id microflowKey?: string // 标识 microflowName?: string // 名称 contact?: string // 联系人 tel?: string // 联系电话 status?: string // 1启用2禁用 枚举: 1,2 createTime?: string // 创建时间 applicationId?: string tenantId?: string updateTime?: string name?: string // microflow名称 remark?: string // 备注 privateKey?: string // 私钥 publicKey?: string // 公钥 formItems?: string // 流程参数 } /** * @description: Microflow */ export interface MicroflowManagementDetailModel { status?: string // 1启用0禁用 applicationId?: string // 应用id name?: string // microflow名称 contact?: string // 联系人 tel?: string // 联系电话 remark?: string // 备注 privateKey?: string // 私钥 publicKey?: string // 公钥 id?: string // 主键 microflowKey?: string // 标识 microflowName?: string // 名称 formItems?: string // 流程参数 }