searchWhere) ->field(['id', 'project_progress_payment_id', 'directory', 'unit_project_name', 'time', 'image_progress', 'declared_cost_tj', 'declared_cost_az', 'declared_cost_other', 'jdsbzj_xiaoji', 'audit_cost_tj', 'audit_cost_az', 'audit_cost_other', 'jdshzj_xiaoji', 'deduction_amount', 'completed_rate', 'contract_total_amount', 'ljwc_funds', 'current_payable_funds', 'payment_rate', 'dcntract_payment_rate', 'remark']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取数量 * @return int * @author likeadmin * @date 2024/02/23 14:17 */ public function count(): int { return ProjectProgressPaymentDetail::where($this->searchWhere)->count(); } }