['project_id', 'bidding_project_fund_source', 'bid_type'], ]; } /** * @notes 获取投标决策列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/11/27 18:14 */ public function lists(): array { return BidBiddingDecision::where($this->searchWhere) ->field(['*']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取投标决策数量 * @return int * @author likeadmin * @date 2023/11/27 18:14 */ public function count(): int { return BidBiddingDecision::where($this->searchWhere)->count(); } }