|
@@ -56,7 +56,7 @@ public class CustomerController {
|
|
|
public Response update(@RequestBody Customer customer) {
|
|
|
Customer c = customerService.getOrganizationId(customer.getOrganizationId(), customer.getUserId());
|
|
|
if(c != null){
|
|
|
- return Response.fail(20000, "组织下已经指定过客服了");
|
|
|
+ return Response.fail(20000, "组织下已经指定过该用户为客服了");
|
|
|
}
|
|
|
customerService.update(customer);
|
|
|
return Response.ok();
|