|
|
@ -1,6 +1,7 @@ |
|
|
|
package com.dreamworks.boditech.controller; |
|
|
|
import com.dreamworks.boditech.controller.entity.ApiResponse; |
|
|
|
import com.dreamworks.boditech.entity.MdbIdChip; |
|
|
|
import com.dreamworks.boditech.entity.parameter.ParamBatchDeleteById; |
|
|
|
import com.dreamworks.boditech.entity.parameter.ParamIdChipSearch; |
|
|
|
import com.dreamworks.boditech.service.IdChipService; |
|
|
|
import com.dreamworks.boditech.utils.MyCommon; |
|
|
@ -39,7 +40,8 @@ public class IdChipController extends BaseController { |
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
@RequestMapping("/api/id-chip/batch-delete") |
|
|
|
public ApiResponse batchDelete() { |
|
|
|
public ApiResponse batchDelete(@RequestBody ParamBatchDeleteById params) { |
|
|
|
this.idChipService.batchDelete(params.idList); |
|
|
|
return this.success(); |
|
|
|
} |
|
|
|
} |