Files
addons
app_download_files
extend
hyhproject
admin
app
common
home
behavior
common
conf
controller
Base.php
Goods.php
Goodscats.php
Index.php
Shopcats.php
Shopconfigs.php
Shopfreights.php
Shoproles.php
Shops.php
Shopusers.php
Users.php
model
validate
view
home2
mobile2
wechat2
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app_download.html
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
index.html
index.php
qlg.tar.gz
reg.lock
robots.txt
qlg.tsgz.moe/hyhproject/home/controller/Goodscats.php
2019-09-06 23:53:10 +08:00

18 lines
405 B
PHP
Executable File

<?php
namespace wstmart\home\controller;
use wstmart\common\model\GoodsCats as M;
/**
* ============================================================================
* 商品分类控制器
*/
class Goodscats extends Base{
/**
* 获取列表
*/
public function listQuery(){
$m = new M();
$rs = $m->listQuery(input('parentId/d',0));
return WSTReturn("", 1,$rs);
}
}