|
|
@@ -273,7 +273,16 @@ public class SmsCheckCustomerInfoController extends JeecgController<SmsCheckCust
|
|
|
customerInfoService.removeById(id);
|
|
|
return Result.OK("删除成功!");
|
|
|
}
|
|
|
-
|
|
|
+ @AutoLog(value = "客户信息-通过id删除")
|
|
|
+ @ApiOperation(value = "客户信息-通过id删除", notes = "客户信息-通过id删除")
|
|
|
+ @DeleteMapping(value = "/deleteByIds")
|
|
|
+ public Result<String> deleteByIds(@RequestParam(name = "ids") String id) {
|
|
|
+ String[] split = id.split(",");
|
|
|
+ for (String s : split) {
|
|
|
+ customerInfoService.removeById(s);
|
|
|
+ }
|
|
|
+ return Result.OK("删除成功!");
|
|
|
+ }
|
|
|
/**
|
|
|
* 批量删除
|
|
|
*
|