Files
gdoo/app/Gdoo/Workflow/Services/WorkflowService.php
T
2021-02-22 12:17:00 +08:00

19 lines
294 B
PHP

<?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;
}
}