统计中心-》添加部门统计逻辑

This commit is contained in:
Guoxianpeng
2026-04-16 10:31:54 +08:00
parent 906684c1ed
commit fb8ae6878c
4 changed files with 454 additions and 0 deletions
@@ -20,4 +20,13 @@ class StatisticsController extends BaseAdminController
{
return $this->dataLists(new StatisticsLists());
}
/**
* @notes 部门统计列表
* @return \think\response\Json
*/
public function deptLists()
{
return $this->dataLists(new StatisticsLists('dept'));
}
}