Skip to content

Commit

Permalink
fix: call super annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
essential2189 committed Jan 22, 2024
1 parent 2ddfd13 commit bfad0ad
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;

@Data
@SuperBuilder
@NoArgsConstructor
public class GetCategoryInfoRequestDto {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import com.todaypopup.todaypopup.core.dto.PaginationQueryDto;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;

@Data
@EqualsAndHashCode(callSuper = true)
@SuperBuilder
@NoArgsConstructor
public class GetPopupsRequestDto extends PaginationQueryDto {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;

@Data
@SuperBuilder
@NoArgsConstructor
public class GetRegionInfoRequestDto {

Expand Down

0 comments on commit bfad0ad

Please sign in to comment.