Files
EasySoft-ZenTaoPMS/module/report/ext/control/projectlist.php
T
2022-09-13 11:25:31 +08:00

11 lines
301 B
PHP

<?php
helper::importControl('report');
class myReport extends report
{
public function projectlist()
{
$projectList = $this->loadModel('program')->getProjectList();
// $projectList = $this->manhour->getProjectPairList();
echo json_encode($projectList);
}
}