公告结构化

This commit is contained in:
zhangqinbin
2023-12-11 16:50:36 +08:00
parent d5f5b14745
commit 083ebe41a8
2 changed files with 4 additions and 2 deletions

View File

@ -140,12 +140,14 @@ public class WpsController {
public void getWpsUrlByGet(HttpServletRequest request, HttpServletResponse response,
@RequestParam("fileId") String fileId,
@RequestParam("fileName") String fileName,
@RequestParam("userToken") String userToken
@RequestParam("userToken") String userToken,
@RequestParam("type") String type
) {
WpsClientInVo in = new WpsClientInVo();
in.setFileId(fileId);
in.setFileName(fileName);
in.setUserToken(userToken);
in.setType(type);
String str = this.wpsService.getKSWpsUrl(in);
try {
String token = userToken;

View File

@ -27,7 +27,7 @@ public class WpsClientInVo {
*/
private String userToken;
/**
*0 查看 1 编辑
*0 查看 9527 编辑
*/
private String type;
}