12345678910111213141516171819 |
- <?php
- namespace Home\Controller;
- use Think\Controller;
- class BuildingInformationController extends ComController
- {
- //建筑基础信息
- public function getBuildingManagement(){
- $Data =I();
- $company_code=$Data['company_code'];
- $R=M()->query("select * from sp_build_basic_information where company_code='".$company_code."'");
- $res['msg'] = '操作成功';
- $res['flag'] = true;
- $res['data'] = $R;
- echo json_encode($res);
- }
- }
|