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
855 B
35 lines
855 B
<?php |
|
/** |
|
* Notice.php |
|
* User: ChenLong |
|
* DateTime: 2020-12-21 16:00:35 |
|
*/ |
|
|
|
namespace app\admin\controller; |
|
|
|
use \app\common\controller\Admin; |
|
|
|
|
|
/** |
|
* Class Notice |
|
* @package app\admin\controller\Notice |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class Notice extends Admin |
|
{ |
|
/** |
|
* 列表数据接口 |
|
* @return mixed|string|\think\Collection|\think\response\Json |
|
* @throws \app\common\SdException |
|
*/ |
|
public function listData() |
|
{ |
|
return $this->setJoin([ |
|
['member', 'i.member_id = member.id ', 'left'], |
|
['bidding', 'i.bidding_id = bidding.id ', 'left'], |
|
]) |
|
->setField('i.id,member.username member_username,i.member_id,bidding.title bidding_title,i.bidding_id,i.content,i.create_time,i.update_time,i.delete_time') |
|
->listsRequest(); |
|
} |
|
|
|
}
|
|
|