|
@@ -747,10 +747,16 @@ public class CommonController extends BaseController {
|
|
|
@Log(title = "测试获取山东题库", businessType = BusinessType.INSERT)
|
|
|
@GetMapping("/common/free/getShanDongExam")
|
|
|
public AjaxResult getShanDongExam(GoodsQueryBo bo) {
|
|
|
- iQuestionOtherService.queryById(3L);
|
|
|
+ System.out.println(dataSign(bo.getBuyNote(), "ca7c349b-52f2-4751-81ea-c86036e2b4e9"));
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
-
|
|
|
+ public String dataSign(String SourceMsg, String PKey) {
|
|
|
+ String TempPKey;
|
|
|
+ TempPKey = ToolsUtils.EncoderByMd5(PKey);
|
|
|
+ TempPKey = SourceMsg + TempPKey;
|
|
|
+ TempPKey = ToolsUtils.EncoderByMd5(TempPKey);
|
|
|
+ return TempPKey;
|
|
|
+ }
|
|
|
|
|
|
@ApiOperation("旧系统post请求")
|
|
|
@PostMapping("/common/free/clientPost")
|