['num'], ]; } /** * @notes 获取列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2024/02/23 15:05 */ public function lists(): array { return ApplyWithSeal::with(['projectInfo', 'dept'])->where($this->searchWhere) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取数量 * @return int * @author likeadmin * @date 2024/02/23 15:05 */ public function count(): int { return ApplyWithSeal::where($this->searchWhere)->count(); } public function setFileName(): string { return '用章申请'; } /** * @notes 导出字段 * @return string[] * @author 段誉 * @date 2022/11/24 16:17 */ public function setExcelFields(): array { return [ 'id' => 'id', 'num' => '单据编号', 'project_id' => '项目id', 'types' => '登记人', 'filetype' => '登记人', 'ridingseam' => '进度申报造价合计', 'name' => '进度审核造价合计', 'frequency' => '累计应付工程款合计', 'limit' => '累计应付工程款合计', 'org_id' => '累计应付工程款合计', 'depar' => '累计应付工程款合计', 'stampman' => '累计应付工程款合计', 'content' => '累计应付工程款合计', 'loan' => '累计应付工程款合计', 'borrow' => '累计应付工程款合计', 'returndate' => '累计应付工程款合计', 'applicant' => '累计应付工程款合计', 'date' => '累计应付工程款合计', 'sjborrow' => '累计应付工程款合计', 'sjborrower' => '累计应付工程款合计', 'sjreturn' => '累计应付工程款合计', 'returnee' => '累计应付工程款合计' ]; } }