You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
549 B
35 lines
549 B
5 days ago
|
<?php
|
||
|
namespace app\api\controller\wanlshop;
|
||
|
|
||
|
use app\common\controller\Api;
|
||
|
use think\Db;
|
||
|
/**
|
||
|
* WanlShop 消息接口
|
||
|
*/
|
||
|
class Notice extends Api
|
||
|
{
|
||
|
protected $noNeedLogin = [];
|
||
|
protected $noNeedRight = ['*'];
|
||
|
|
||
|
public function _initialize()
|
||
|
{
|
||
|
parent::_initialize();
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 获取消息列表
|
||
|
*
|
||
|
* @ApiSummary (WanlShop 消息接口获取消息列表)
|
||
|
* @ApiMethod (GET)
|
||
|
* 2020年5月12日23:25:40
|
||
|
*
|
||
|
* @param string $type 消息类型
|
||
|
*/
|
||
|
public function getNoticeList($type)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|