Commit f365dbbd authored by unset's avatar unset

Merge remote-tracking branch 'origin/dev-tiande' into dev-tiande

parents 8ca59d6d 35be3554
......@@ -80,7 +80,7 @@ public class AppUserCollectBiz extends BaseBiz<AppUserCollectMapper, AppUserColl
}
}
return ObjectRestResponse.succ();
return ObjectRestResponse.succ(collect.getId());
}
//更新收藏
......
......@@ -107,6 +107,7 @@ public class AppUserCollectController extends CommonBaseController {
@RequestMapping(value = "/collect/remove",method = RequestMethod.POST)
@ApiModelProperty("取消收藏")
public ObjectRestResponse remove(@RequestBody AppUserCollectDTO collectDTO)throws Exception {
collectDTO.setStatus(1);
return collectBiz.upUserCollect(collectDTO);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment