|
@@ -186,6 +186,20 @@ public class CustomerController {
|
|
|
customerRec.setRecStatus(4);
|
|
|
return customerService.updateCustomerRecStatus(customerRec);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改客户状态
|
|
|
+ * @return 用户集合
|
|
|
+ */
|
|
|
+ @PostMapping("/customeRecStart")
|
|
|
+ @ApiOperation(value="启用备案用户", notes="启用备案用户")
|
|
|
+ @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
|
|
|
+ public RespR customeRecStart(@RequestBody CustomerRec customerRec) {
|
|
|
+ customerRec.setRecStatus(1);
|
|
|
+ return customerService.updateCustomerRecStatus(customerRec);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 修改客户状态
|
|
|
* @return 用户集合customerRecAdd
|