金山WPS在线编辑

This commit is contained in:
zhangqinbin
2023-10-31 10:47:03 +08:00
parent c9610cd80a
commit 7f64a44dbd
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ public class KingSoftWpsVo {
/**
* 文件后缀名,如docx、pdf
*/
private String fillExtension;
private String fileExtension;
/**
* 文件版本号 1
*/

View File

@ -503,7 +503,7 @@ public class WpsServiceImpl implements WpsService {
vo.setFileKey(in.getFileId());
String fileName = in.getFileName();
vo.setFillName(fileName);
vo.setFillExtension(fileName.substring(fileName.lastIndexOf(".")+1,fileName.length()));
vo.setFileExtension(fileName.substring(fileName.lastIndexOf(".")+1,fileName.length()));
vo.setVersion(1);
try {