|
@@ -149,7 +149,7 @@ public class CustomerServiceBatchSendingController extends BaseController {
|
|
|
@ApiOperation(value = "更新消息状态", notes = "客服群发- 传入id")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "id", value = "主键Id", dataType = "long"),
|
|
|
- @ApiImplicitParam(name = "sendStatus", value = "发送状态", dataType = "String"),
|
|
|
+ @ApiImplicitParam(name = "sendStatus", value = "发送状态", dataType = "String")
|
|
|
})
|
|
|
@PostMapping("/status/{id}")
|
|
|
public HttpResponseResult<Boolean> status(@PathVariable("id") Long id, EImSendStatus sendStatus) {
|
|
@@ -166,7 +166,7 @@ public class CustomerServiceBatchSendingController extends BaseController {
|
|
|
|
|
|
@ApiOperation(value = "立即发送", notes = "客服群发- 传入id")
|
|
|
@ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "id", value = "主键Id", dataType = "long"),
|
|
|
+ @ApiImplicitParam(name = "id", value = "主键Id", dataType = "long")
|
|
|
})
|
|
|
@PostMapping("/send/{id}")
|
|
|
public HttpResponseResult<Boolean> send(@PathVariable("id") Long id) {
|