handleReport.php 436 B

12345678910111213141516171819202122232425
  1. <?php
  2. // 加载基础文件
  3. require __DIR__ . '/../thinkphp/base.php';
  4. // 支持事先使用静态方法设置Request对象和Config对象
  5. // 执行应用并响应
  6. //\think\Container::get('app')->runWeb();
  7. use app\controller\DiAn;
  8. class handleReport
  9. {
  10. public function getDiAnData($data){
  11. return DiAn::getDiAnData($data);
  12. }
  13. // public function checkReportUpdate($data){
  14. // $res = Order::update($data);
  15. // return $res;
  16. // }
  17. }