|
|
@ -8,7 +8,6 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.PutMapping;
|
|
|
|
import org.springframework.web.bind.annotation.PutMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
@ -189,11 +188,9 @@ public class BizNimsController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Operation(summary = "사고 마약류 폐기 관리 목록 조회", description = "사고 마약류 폐기 관리 목록 조회", tags = { "BIZ API" })
|
|
|
|
@Operation(summary = "사고 마약류 폐기 관리 목록 조회", description = "사고 마약류 폐기 관리 목록 조회", tags = { "BIZ API" })
|
|
|
|
//@PostMapping(value = "/getDsuseMgts")
|
|
|
|
@PostMapping(value = "/getDsuseMgts")
|
|
|
|
@RequestMapping(value = "/getDsuseMgts", method = { RequestMethod.POST, RequestMethod.GET })
|
|
|
|
|
|
|
|
public ApiBaseResponse<List<BizNimsResponse.DsuseMgtRes>> getDsuseMgts(
|
|
|
|
public ApiBaseResponse<List<BizNimsResponse.DsuseMgtRes>> getDsuseMgts(
|
|
|
|
//@RequestBody BizNimsRequest.DsuseMgtInq dto
|
|
|
|
@RequestBody BizNimsRequest.DsuseMgtInq dto
|
|
|
|
BizNimsRequest.DsuseMgtInq dto
|
|
|
|
|
|
|
|
) {
|
|
|
|
) {
|
|
|
|
return ApiBaseResponse.of(bizNimsService.getDsuseMgts(dto, false));
|
|
|
|
return ApiBaseResponse.of(bizNimsService.getDsuseMgts(dto, false));
|
|
|
|
}
|
|
|
|
}
|
|
|
|