Skip to content

Commit

Permalink
✨ Mission(#7) : TempRequest,Response 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Ssamssamukja committed Nov 14, 2024
1 parent 5e75797 commit c891481
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spring/src/main/java/umc/spring/web/dto/TempRequest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package umc.spring.web.dto;

public class TempRequest {
}
22 changes: 22 additions & 0 deletions spring/src/main/java/umc/spring/web/dto/TempResponse.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package umc.spring.web.dto;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
public class TempResponse {
@Builder
@Getter
@NoArgsConstructor
@AllArgsConstructor
public static class TempTestDTO{
String testString;
}
@Builder
@Getter
@NoArgsConstructor
@AllArgsConstructor
public static class TempExceptionDTO{
Integer flag;
}
}

0 comments on commit c891481

Please sign in to comment.