12345678910111213141516171819202122232425 |
- <?php
- // 加载基础文件
- require __DIR__ . '/../thinkphp/base.php';
- // 支持事先使用静态方法设置Request对象和Config对象
- // 执行应用并响应
- //\think\Container::get('app')->runWeb();
- use app\controller\DiAn;
- class handleReport
- {
- public function getDiAnData($data){
- return DiAn::getDiAnData($data);
- }
- // public function checkReportUpdate($data){
- // $res = Order::update($data);
- // return $res;
- // }
- }
|