18 lines
445 B
PHP
18 lines
445 B
PHP
<?php
|
||
/**
|
||
* 【文档】记事接口
|
||
* createname:雨中磐石
|
||
* homeurl:http://www.rockoa.com/
|
||
* Copyright (c) 2016 rainrock (www.rockoa.com)
|
||
* Date:2016-08-12
|
||
*/
|
||
class scheduleClassAction extends apiAction
|
||
{
|
||
public function getlistAction()
|
||
{
|
||
$startdt = $this->post('startdt');
|
||
$enddt = $this->post('enddt');
|
||
$arr = m('schedule')->getlistdata($this->adminid, $startdt, $enddt);
|
||
$this->showreturn($arr);
|
||
}
|
||
} |