-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[차트 입력 기능] OCR + S3 + presigned url로 구현하기 (#86)
* refactor : 알림 예약 수정 부분 삭제하기 * feat : 알림 전용 테이블 만들기 * feat : 리뷰 반영 * feat : sqs 서비스 붙이고 테스트하기 * feat : sqs 서비스 통일화 * feat : 관리자 페이지에서 요양보호사 추가할 때 알람 테이블도 추가하기 * refactor : 스케쥴러 코드 수정하기 * feat : 요양보호사 성공!!! * feat : 다음 근무일에 보낼 알림 메시지 작성 * feat : 요양보호사 로직 완성 * refactor : 디렉토리 위치 변경 * feat : coolsms 의존성 추가 * feat : sms 문자 메시지 api 연결 완료 * feat : Presigned Url 생성 및 테스트 완료 * feat : 키값과 presigned url을 OcrData 테이블에 저장해주기 * feat : Naver Clova OCR API를 통하여 텍스트 추출 성공 * feat : Naver Clova OCR API를 통하여 표 추출 성공 * refactor : Presigned URL 생성 및 반환 로직 수정 * refactor : OCR 인식 과정 수정 * refactor : 간단한 수정 * refactor : excel 파일 이전 * refactor : 이름 수정 * refactor : 엑셀 파일 이전 * refactor : 4. Chart API까지 확인 완료 * refactor : 숨기기 * refactor : OCR Test 완료!!!
- Loading branch information
Showing
47 changed files
with
1,237 additions
and
432 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package dbdr.domain.careworker; | ||
|
||
public enum WorkDay { | ||
MONDAY(1), | ||
TUESDAY(2), | ||
WEDNESDAY(4), | ||
THURSDAY(8), | ||
FRIDAY(16), | ||
SATURDAY(32), | ||
SUNDAY(64); | ||
|
||
private final int value; | ||
|
||
WorkDay(int value) { | ||
this.value = value; | ||
} | ||
|
||
public int getValue() { | ||
return value; | ||
} | ||
} |
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
54 changes: 0 additions & 54 deletions
54
src/main/java/dbdr/domain/careworker/service/CareworkerMessagingService.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.