作者 何书鹏

api更新

... ... @@ -6,6 +6,10 @@ use addons\shopro\exception\Exception;
use app\common\controller\Api;
use think\Lang;
/**
* @ApiInternal
* Base
*/
class Base extends Api
{
public function _initialize()
... ...
<?php
namespace addons\shopro\controller;
namespace app\api\controller;
/**
* @ApiInternal
* 店铺装修接口
*/
class Decorate extends Base
{
... ...
... ... @@ -8,6 +8,7 @@ use think\Cache;
/**
* @ApiInternal
* 直播接口
*/
class Live extends Base
{
... ...
<?php
namespace addons\shopro\controller;
namespace app\api\controller;
use addons\shopro\exception\Exception;
use addons\shopro\model\NotificationConfig;
... ... @@ -8,6 +8,7 @@ use think\Cache;
/**
* @ApiInternal
* 推送接口
*/
class Notification extends Base
{
... ...
... ... @@ -6,6 +6,7 @@ use addons\shopro\model\Share as ShareModel;
/**
* @ApiInternal
* 分享记录接口
*/
class Share extends Base
{
... ...
<?php
namespace addons\shopro\controller;
namespace app\api\controller;
use addons\shopro\exception\Exception;
use addons\shopro\model\Store as ModelStore;
... ...
<?php
namespace addons\shopro\controller\store;
namespace app\api\controller\store;
use addons\shopro\exception\Exception;
use addons\shopro\controller\Base as AddonsBase;
... ... @@ -10,6 +10,7 @@ use addons\shopro\model\UserStore;
/**
* @ApiInternal
* store/Base
*/
class Base extends AddonsBase
{
... ...
<?php
namespace addons\shopro\controller\store;
namespace app\api\controller\store;
/**
* @ApiInternal
* store/Order
*/
class Order extends Base
{
... ...
<?php
namespace addons\shopro\controller\store;
namespace app\api\controller\store;
use addons\shopro\exception\Exception;
use addons\shopro\model\Store as ModelStore;
/**
* @ApiInternal
* store/Store
*/
class Store extends Base
{
... ...
此 diff 太大无法显示。