Quellcode durchsuchen

고시정보 관리 - @RequestBody로 수정

eskim vor 4 Jahren
Ursprung
Commit
6f267fdef7
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      src/main/java/com/style24/admin/biz/web/TsaGoodsController.java

+ 2 - 1
src/main/java/com/style24/admin/biz/web/TsaGoodsController.java

@@ -325,7 +325,8 @@ public class TsaGoodsController extends TsaBaseController {
 	 */
 	@PostMapping("/notiInfo/list")
 	@ResponseBody
-	public Collection<NotiInfo> getNotiInfoList(NotiInfo notiInfo) {
+	public Collection<NotiInfo> getNotiInfoList(@RequestBody NotiInfo notiInfo) {
+		log.info("notiInfo == {}", notiInfo);
 		return goodsService.getNotiInfoList(notiInfo);
 	}