-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: studyId로 수강이력 조회 메서드 추가 * feat: 수강생 엑셀 다운로드 api 추가 * feat: 엑셀 내용 입력 기능 추가 * refactor: IOException을 커스텀 예외로 변환하도록 수정 * refactor: 하드코딩된 index 수정
- Loading branch information
1 parent
382ac9a
commit 53f6967
Showing
9 changed files
with
198 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/main/java/com/gdschongik/gdsc/global/common/constant/WorkbookConstant.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
package com.gdschongik.gdsc.global.common.constant; | ||
|
||
public class WorkbookConstant { | ||
// Member | ||
public static final String ALL_MEMBER_SHEET_NAME = "전체 회원 목록"; | ||
public static final String REGULAR_MEMBER_SHEET_NAME = "정회원 목록"; | ||
public static final String[] MEMBER_SHEET_HEADER = { | ||
"가입 일시", "이름", "학번", "학과", "전화번호", "이메일", "디스코드 유저네임", "커뮤니티 닉네임" | ||
}; | ||
|
||
// Study | ||
public static final String[] STUDY_SHEET_HEADER = { | ||
"이름", "학번", "디스코드 유저네임", "커뮤니티 닉네임", "깃허브 링크", "수료 여부", "1차 우수 스터디원 여부", "2차 우수 스터디원 여부", "출석률", "과제 수행률" | ||
}; | ||
public static final String WEEKLY_ASSIGNMENT = "%d주차 과제"; | ||
public static final String WEEKLY_ATTENDANCE = "%d주차 출석"; | ||
|
||
private WorkbookConstant() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters