18 lines
371 B
PHP
Executable File
18 lines
371 B
PHP
Executable File
<?php
|
|
namespace wstmart\wechat\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);
|
|
}
|
|
}
|