|
@@ -98,9 +98,9 @@ public class ChannelCartController extends BaseApiController {
|
|
|
public AjaxResult remove(@RequestBody BatchLongIdsParam param) {
|
|
|
boolean rtn = channelCartService.removeByIds(param.getIds());
|
|
|
if (!rtn) {
|
|
|
- return AjaxResult.success("操作失败");
|
|
|
+ return AjaxResult.error("操作失败");
|
|
|
}
|
|
|
- return AjaxResult.error("操作成功");
|
|
|
+ return AjaxResult.success("操作成功");
|
|
|
}
|
|
|
|
|
|
}
|