fix(文档拆分): 78415
This commit is contained in:
+3
@@ -18,6 +18,9 @@ import java.util.Date;
|
||||
**/
|
||||
@Data
|
||||
public class SplitFileInfo {
|
||||
@Excel(name = "id")
|
||||
private String id;
|
||||
|
||||
@Excel(name = "文件名称")
|
||||
private String fileName;
|
||||
|
||||
|
||||
+1
@@ -1032,6 +1032,7 @@ public class DocumentSplitServiceImpl implements IDocumentSplitService {
|
||||
queryWrapper.like(StringUtils.isNotBlank(splitFileInfo.getStandardNumber()), "standard_number", splitFileInfo.getStandardNumber());
|
||||
queryWrapper.like(StringUtils.isNotBlank(splitFileInfo.getStandardName()), "standard_name", splitFileInfo.getStandardName());
|
||||
queryWrapper.like(StringUtils.isNotBlank(splitFileInfo.getStandardFileType()), "standard_file_type", splitFileInfo.getStandardFileType());
|
||||
queryWrapper.likeLeft("file_name", ".docx");
|
||||
queryWrapper.isNotNull("o.standard_id");
|
||||
queryWrapper.orderByDesc("create_time");
|
||||
return documentSplitMapper.querySplitFileInfoByPage(queryWrapper, new Page<>(pageNo, pageSize));
|
||||
|
||||
Reference in New Issue
Block a user