|
|
|
|
@ -11,10 +11,7 @@ import io.swagger.v3.oas.annotations.responses.ApiResponses;
|
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@ -54,4 +51,10 @@ public class MinwonInitController {
|
|
|
|
|
return ApiResponseUtil.successWithGrid(result, dto);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/postman/test")
|
|
|
|
|
public ResponseEntity<?> test(@RequestBody MinwonInitDto.Request.Test test) {
|
|
|
|
|
|
|
|
|
|
return ResponseEntity.ok(minwonInitService.insertSometing(test));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|