|
@@ -289,8 +289,12 @@ public class KuaiShouMaterialStareController {
|
|
* @param requestJson
|
|
* @param requestJson
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @PostMapping(value = "/participateListByMediaIdAllSubordinate")
|
|
|
|
- public Result<List<JSONObject>> participateListByMediaIdAllSubordinate(@RequestBody JSONObject requestJson) {
|
|
|
|
|
|
+ @GetMapping(value = "/participateListByMediaIdAllSubordinate")
|
|
|
|
+ public Result<List<JSONObject>> participateListByMediaIdAllSubordinate(@RequestParam(name="userId") String userId,
|
|
|
|
+ @RequestParam(name="type") String type) {
|
|
|
|
+ JSONObject requestJson = new JSONObject();
|
|
|
|
+ requestJson.put("userId",userId);
|
|
|
|
+ requestJson.put("type",type);
|
|
return materialStareService.participateListByMediaIdAllSubordinate(requestJson);
|
|
return materialStareService.participateListByMediaIdAllSubordinate(requestJson);
|
|
}
|
|
}
|
|
|
|
|