['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 { $lists = FinancialPaymentRecords::where($this->searchWhere) ->field(['id', 'export_conditions', 'batch_number', 'upload_status', 'payment_status']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); foreach ($lists as &$item) { $item['file_url'] = isset($item['export_conditions']['infoExport_id'])?ExportLogic::detail(['id'=>$item['export_conditions']['infoExport_id']])['file_url']:''; $item['settlement_type'] = $item['export_conditions']['settlement_type']??0; $item['deadline_time'] = date('Y-m-d', $item['export_conditions']['deadline_time']-1); } return $lists; } /** * @notes 获取数量 * @return int * @author likeadmin * @date 2024/12/02 11:55 */ public function count(): int { return FinancialPaymentRecords::where($this->searchWhere)->count(); } }