-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
화주 운송등록 추가 #3
화주 운송등록 추가 #3
Conversation
import lombok.RequiredArgsConstructor; | ||
import org.springframework.http.HttpStatus; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.web.bind.annotation.*; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*
를 풀어서 모든 import가 보이도록 해주세요.
private String comment; | ||
|
||
@Builder | ||
public Shipment(ShipmentDTO.ShipmentRequest req) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Entity에 DTO의 의존성을 넣는 것에 대해서
2. 계약 체결 추가
Quality Gate failedFailed conditions |
@@ -40,4 +42,13 @@ public ShipmentDTO.BasicInfo get(String shipmentId) { | |||
} | |||
return null; | |||
} | |||
|
|||
@Transactional |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Transactional은 왜 필요한가요?
No description provided.