Skip to content

Commit

Permalink
chore:코드 컨벤션
Browse files Browse the repository at this point in the history
  • Loading branch information
youcastle03 committed Nov 14, 2024
1 parent 4b0014d commit 8a56797
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class ArticleController {
/**
* 새로운 칼럼 생성
*
*
* @param articleDTO 생성할 칼럼의 세부 정보가 포함된 DTO
* @return 생성된 칼럼의 DTO와 상태 코드 201 (Created)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public ProductController(ProductService productService) {
* @return 전체 상품 목록
*/
@GetMapping
public ResponseEntity<Page<ProductResponseDTO>> getAllProducts(@RequestParam(required = false)String q,
public ResponseEntity<Page<ProductResponseDTO>> getAllProducts(@RequestParam(required = false) String q,
@RequestParam(required = false) List<String> allergy,
@RequestParam(required = false) List<String> freeFroms,
@RequestParam(required = false, defaultValue = "0") int priceMin,
Expand Down

0 comments on commit 8a56797

Please sign in to comment.