|
|
|
|
@ -98,10 +98,11 @@ public class CrdnActrInfoController {
|
|
|
|
|
@Operation(summary = "위반행위자정보 삭제", description = "위반행위자정보를 삭제합니다.")
|
|
|
|
|
@ApiResponses(value = {
|
|
|
|
|
@ApiResponse(responseCode = "200", description = "삭제 성공"),
|
|
|
|
|
@ApiResponse(responseCode = "500", description = "서버 오류")
|
|
|
|
|
@ApiResponse(responseCode = "500", description = "서버 오류"),
|
|
|
|
|
@ApiResponse(description = "오류로 인한 실패")
|
|
|
|
|
})
|
|
|
|
|
@PostMapping("/delete.ajax")
|
|
|
|
|
public ResponseEntity<?> deleteAjax(List<String> actrInfoIds) {
|
|
|
|
|
public ResponseEntity<?> deleteAjax(@RequestParam List<String> actrInfoIds) {
|
|
|
|
|
log.debug("위반행위자정보 삭제 요청: {}", actrInfoIds);
|
|
|
|
|
|
|
|
|
|
if (actrInfoIds == null || actrInfoIds.isEmpty()) {
|
|
|
|
|
|