修正流程引擎多人执行模式bug

This commit is contained in:
2021-04-13 00:01:21 +08:00
parent de8a7e82be
commit d5da54b817
27 changed files with 2383 additions and 85 deletions
@@ -0,0 +1,18 @@
<?php namespace Gdoo\Workflow\Services;
use DB;
use Auth;
class WorkflowService
{
/**
* 获取待办工作流程
*/
public static function getBadge()
{
$rows = [];
$ret['total'] = sizeof($rows);
$ret['data'] = $rows;
return $ret;
}
}