['export_conditions', 'batch_number', 'upload_status', 'payment_status'], ]; } /** * @notes 获取列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2024/12/02 11:55 */ public function lists(): array { return FinancialPaymentRecords::where($this->searchWhere) ->field(['id', 'export_conditions', 'batch_number', 'upload_status', 'payment_status']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取数量 * @return int * @author likeadmin * @date 2024/12/02 11:55 */ public function count(): int { return FinancialPaymentRecords::where($this->searchWhere)->count(); } }