Skip to content

Commit

Permalink
feat: #116 CategoryTreeResponse - 기본생성자 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
woody35545 committed May 30, 2024
1 parent 20e833f commit 6272228
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.t3t.frontserver.category.response;

import lombok.Builder;
import lombok.Data;
import lombok.*;

import java.util.List;

Expand All @@ -12,6 +11,8 @@
*/
@Data
@Builder
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@AllArgsConstructor(access = AccessLevel.PRIVATE)
public class CategoryTreeResponse {
private Integer categoryId;

Expand Down

0 comments on commit 6272228

Please sign in to comment.