公告结构化
This commit is contained in:
@ -140,12 +140,14 @@ public class WpsController {
|
|||||||
public void getWpsUrlByGet(HttpServletRequest request, HttpServletResponse response,
|
public void getWpsUrlByGet(HttpServletRequest request, HttpServletResponse response,
|
||||||
@RequestParam("fileId") String fileId,
|
@RequestParam("fileId") String fileId,
|
||||||
@RequestParam("fileName") String fileName,
|
@RequestParam("fileName") String fileName,
|
||||||
@RequestParam("userToken") String userToken
|
@RequestParam("userToken") String userToken,
|
||||||
|
@RequestParam("type") String type
|
||||||
) {
|
) {
|
||||||
WpsClientInVo in = new WpsClientInVo();
|
WpsClientInVo in = new WpsClientInVo();
|
||||||
in.setFileId(fileId);
|
in.setFileId(fileId);
|
||||||
in.setFileName(fileName);
|
in.setFileName(fileName);
|
||||||
in.setUserToken(userToken);
|
in.setUserToken(userToken);
|
||||||
|
in.setType(type);
|
||||||
String str = this.wpsService.getKSWpsUrl(in);
|
String str = this.wpsService.getKSWpsUrl(in);
|
||||||
try {
|
try {
|
||||||
String token = userToken;
|
String token = userToken;
|
||||||
|
@ -27,7 +27,7 @@ public class WpsClientInVo {
|
|||||||
*/
|
*/
|
||||||
private String userToken;
|
private String userToken;
|
||||||
/**
|
/**
|
||||||
*0 查看 1 编辑
|
*0 查看 9527 编辑
|
||||||
*/
|
*/
|
||||||
private String type;
|
private String type;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user