2019-09-06 23:53:10 +08:00

18 lines
373 B
PHP
Executable File

<?php
namespace wstmart\home\controller;
use wstmart\common\model\Areas as M;
/**
* ============================================================================
* 地区控制器
*/
class Areas extends Base{
/**
* 获取地区信息
*/
public function listQuery(){
$m = new M();
$rs = $m->listQuery();
return WSTReturn('', 1,$rs);
}
}