|
@@ -145,7 +145,12 @@ public class MicroappRecommendationController extends BaseController {
|
|
|
}
|
|
|
@RequestMapping(value="doMove.action")
|
|
|
@ResponseBody
|
|
|
- public ResultState doMove(DataRecommenAddModel inputModel) {
|
|
|
+ public ResultState doMove(Long id,Long resourceId,String sortCategory,int sortValue) {
|
|
|
+ DataRecommenAddModel inputModel = new DataRecommenAddModel();
|
|
|
+ inputModel.setId(id);
|
|
|
+ inputModel.setResourceId(resourceId);
|
|
|
+ inputModel.setSortCategory(sortCategory);
|
|
|
+ inputModel.setSortValue(sortValue);
|
|
|
ResultState resultState = dataRecommendationService.doMove(inputModel);
|
|
|
return resultState;
|
|
|
}
|