|
|
|
@ -32,8 +32,7 @@ public class SmgController extends AbstractController {
|
|
|
|
|
* </ul>
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping(value = "/petition/receive.do", name = "국민 신문고 민원 수신")
|
|
|
|
|
public ModelAndView receivePetitions(@RequestBody Map<String, Object> result) {
|
|
|
|
|
List<String> interfaceSequences = (List<String>)result.get("interfaceSequences");
|
|
|
|
|
public ModelAndView receivePetitions(@RequestBody List<String> interfaceSequences) {
|
|
|
|
|
boolean empty = isEmpty(interfaceSequences);
|
|
|
|
|
log().debug("interfaceSequences received: {}", empty ? "none" : String.join(", ", interfaceSequences));
|
|
|
|
|
|
|
|
|
|