文档库--标签排序

This commit is contained in:
zhn
2022-03-10 23:35:25 +08:00
parent d7bde1bfd1
commit 59151ce246
2 changed files with 3 additions and 3 deletions
@@ -1797,7 +1797,7 @@ public class BussDocumentLibraryEOServiceImpl extends ServiceImpl<BussDocumentLi
}
fileTemp.mkdirs();
//excel
OutputStream excelOS = new FileOutputStream(path + File.separator + "文档库.xls");
OutputStream excelOS = new FileOutputStream(path + File.separator + "文档库.xlsx");
workbook.write(excelOS);
excelOS.flush();
//带文件导出
@@ -29,6 +29,6 @@ public interface OnlCgformTagMapper extends BaseMapper<OnlCgformTag> {
"where f.cgform_head_id=\"48308196e7b04761b533dc31bc899707\"\n" +
"and f.is_delete=0\n" +
"and i.dict_id=1493098515761917954 \n" +
"order by f.create_time desc ")
"order by f.order_num asc ")
IPage<OnlCgformTag> queryPageList(IPage page,@Param("params") Map<String,Object> params);
}
}