multi-store/app/store/controller/user/UserShipController.php

18 lines
287 B
PHP

<?php
namespace app\store\controller\user;
use app\store\controller\BaseAdminController;
use app\common\lists\user\UserShipLists;
class UserShipController extends BaseAdminController
{
public function lists()
{
return $this->dataLists(new UserShipLists());
}
}