Skip to content

Commit

Permalink
[CHORE] 주석 업데이트
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jan 14, 2024
1 parent b5b6c89 commit 44250ce
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
import java.util.stream.Collectors;

@Entity
@NoArgsConstructor(access = AccessLevel.PROTECTED) @Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Getter
public class Application extends BaseTimeEntity {

private static final int DEFAULT_ANSWER_LIMIT = 700;
Expand All @@ -20,6 +21,9 @@ public class Application extends BaseTimeEntity {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long applicationId;

/*
개인정보 이용 동의 여부 (필수)
*/
private boolean isPersonalInformationAgreed;

@ManyToOne(fetch = FetchType.LAZY)
Expand Down Expand Up @@ -100,9 +104,15 @@ public class Application extends BaseTimeEntity {
private String availableInterviewTime2;
private String availableInterviewTime3;

/*
알게 된 경로 (필수)
*/
@Enumerated(EnumType.STRING)
private PathType pathToKnow;

/*
기타 선택했을 때, 알게 된 경로
*/
private String etcDetail;

@Column(columnDefinition = "TEXT")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ public class GraduateInterviewContent {
@JoinColumn(name = "interview_id")
private GraduateInterview graduateInterview;

@Column(length = 400)
@Column(columnDefinition = "TEXT")
private String question;

@Column(length = 400)
@Column(columnDefinition = "TEXT")
private String answer;

@Column
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ public class Part {
@Column(nullable = false)
private Long partId;

// BE FE DESIGN PLAN
// BE FE DESIGN PM
@Column(nullable = false)
private String name;

// 백엔드 프론트엔드 디자인 기획
@Column(nullable = false)
private String koreanName;

@Column(length = 200)
@Column(columnDefinition = "TEXT")
private String partContent;

@Column(length = 200)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.startlion.startlionserver.global.enums;


// TODO: ENUM 변수 그대로가 아니라, name 변수를 사용하도록 변경
public enum CustomCode {
SL_50000,
SL_40000,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
@Transactional(readOnly = true)
public class ApplicationQueryService {

private static final int FIRST_DAY_LAST_INTERVIEW_INDEX = 11;
private static final int SECOND_DAY_LAST_INTERVIEW_INDEX = 23;

private final ApplicationJpaRepository applicationJpaRepository;
private final UserJpaRepository userJpaRepository;
private final PartQuestionJpaRepository partQuestionJpaRepository;
Expand Down

0 comments on commit 44250ce

Please sign in to comment.