apicp.TablePositionList.php 376 Bytes
<?php
    /**
     *  返回桌位编号
     */

    include "Common/JsonResponse.php";
    include "Common/mysqlHelper.php";
    include "Common/WechatHelper.php";
    include "Common/Encrypter.php";

    $mysql = new mysqlHelper();
    $data  = $mysql->fetchAll("SELECT number FROM table_position");

    // 返回桌位列表
    JsonResponse::result(['data' => $data]);