['buy_bidding_document_id', 'is_need_deposit'], ]; } /** * @notes 获取标书审查列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/12/02 09:52 */ public function lists(): array { return BidDocumentExamination::where($this->searchWhere) ->field(['*'])->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取标书审查数量 * @return int * @author likeadmin * @date 2023/12/02 09:52 */ public function count(): int { return BidDocumentExamination::where($this->searchWhere)->count(); } }