21 lines
585 B
PHP
21 lines
585 B
PHP
<?php
|
|
/**
|
|
* The departments entry point of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package entries
|
|
* @version 1
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class departmentsEntry extends entry
|
|
{
|
|
public function get()
|
|
{
|
|
$depts = $this->loadModel('dept')->getDataStructure();
|
|
|
|
return $this->send(200, $depts);
|
|
}
|
|
}
|