fix: NIMS API 정리

dev
Jonguk. Lim 5 months ago
parent feb357af53
commit 3db7597f27

@ -5,7 +5,6 @@ import java.util.List;
import org.springframework.http.MediaType; import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
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.RequestMethod;
@ -219,7 +218,7 @@ public class BizNimsController {
""") """)
}) })
}) })
@PutMapping(value = "/modifyPrgsSttsOfDsuseMgt") @PostMapping(value = "/modifyPrgsSttsOfDsuseMgt")
public ApiBaseResponse<Void> modifyPrgsSttsOfDsuseMgt(@RequestBody final BizNimsDto.DsuseMgt dto) { public ApiBaseResponse<Void> modifyPrgsSttsOfDsuseMgt(@RequestBody final BizNimsDto.DsuseMgt dto) {
bizNimsService.modifyPrgsSttsOfDsuseMgt(dto); bizNimsService.modifyPrgsSttsOfDsuseMgt(dto);
return ApiBaseResponse.of(); return ApiBaseResponse.of();

Loading…
Cancel
Save