Skip to content

Commit

Permalink
style: 코드 개행
Browse files Browse the repository at this point in the history
  • Loading branch information
Soundbar91 committed Nov 30, 2024
1 parent d8cf385 commit cdddd14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,11 @@ public class AdminActivityHistory extends BaseEntity {

@Builder
public AdminActivityHistory(
Integer domainId, HttpMethodType requestMethod,
DomainType domainName, String requestMessage, Admin admin
Integer domainId,
HttpMethodType requestMethod,
DomainType domainName,
String requestMessage,
Admin admin
) {
this.domainId = domainId;
this.requestMethod = requestMethod;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import in.koreatech.koin.admin.history.model.AdminActivityHistory;

public interface AdminActivityHistoryRepository extends Repository<AdminActivityHistory, Integer> {

AdminActivityHistory save(AdminActivityHistory adminActivityHistory);

Optional<AdminActivityHistory> findById(Integer id);
Expand Down

0 comments on commit cdddd14

Please sign in to comment.