{"id":17362839,"url":"https://github.com/mjbae/precisiontaxcalc","last_synced_at":"2025-03-27T17:30:19.912Z","repository":{"id":257189158,"uuid":"743792371","full_name":"MJbae/PrecisionTaxCalc","owner":"MJbae","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-14T23:34:39.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-01T20:45:22.351Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MJbae.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-16T02:04:12.000Z","updated_at":"2024-09-15T01:17:59.000Z","dependencies_parsed_at":"2024-09-15T08:19:55.021Z","dependency_job_id":null,"html_url":"https://github.com/MJbae/PrecisionTaxCalc","commit_stats":null,"previous_names":["mjbae/precisiontaxcalc"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MJbae%2FPrecisionTaxCalc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MJbae%2FPrecisionTaxCalc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MJbae%2FPrecisionTaxCalc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MJbae%2FPrecisionTaxCalc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MJbae","download_url":"https://codeload.github.com/MJbae/PrecisionTaxCalc/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245892380,"owners_count":20689488,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-15T19:43:32.091Z","updated_at":"2025-03-27T17:30:19.880Z","avatar_url":"https://github.com/MJbae.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 세액 계산 시스템\n\n### 목차\n[I. 테스트 환경 정보](#i-테스트-환경-정보)\n\n[II. 요구사항 구현 여부](#ii-요구사항-구현-여부)\n\n[III. 요구사항 검증 결과](#iii-요구사항-검증-결과)\n\n[IV. 프로젝트 구조](#iv-프로젝트-구조)\n\n### I. 테스트 환경 정보\n- Swagger URL: http://localhost:8080/swagger-ui/index.html\n- H2 DB Console URL: http://localhost:8080/h2-console/login.jsp \n- H2 JDBC URL: jdbc:h2:mem:testdb\n- H2 User Name: sa\n- H2 User 비밀번호는 없습니다.\n\n### II. 요구사항 구현 여부\n- **회원가입 API 구현**: 완료\n- **로그인 API 구현**: 완료\n- **고객 정보 조회 API 구현**: 완료\n- **고객 세액 정보 스크랩 API 구현**: 완료\n- **고객 환급액 계산 API 구현**: 완료\n\n### III. 요구사항 검증 결과\n\n- **회원가입 API 요구사항 검증 결과**\n    : 본 API를 호출한 결과, Request Body로 전달한 정보가 DB에 정상적으로 저장됩니다. 주민등록번호는 암호화하고, 비밀번호는 해싱하여 저장됩니다. 요구사항에 명시된 5명만 회원가입이 가능합니다.\n\n- **로그인 API 요구사항 검증 결과**\n    : 회원가입 API에 전달한 userId와 password로 본 API를 호출한 결과, 성공 응답을 받습니다. 본 API의 Response Body에서 인증정보가 암호화된 토큰을 얻을 수 있습니다.\n\n- **고객 정보 조회 API 요구사항 검증 결과**\n    : 인증 토큰으로 본 API를 호출한 결과, 사용자의 정보를 조회할 수 있습니다.\n\n- **고객 세액 정보 스크랩 API 요구사항 검증 결과**\n    : 인증 토큰으로 본 API를 호출한 결과, 본 사용자의 세액 정보를 스크랩핑하고 필요한 값만 DB에 저장됩니다.  \n\n- **고객 환급액 계산 API 요구사항 검증 결과**\n    : 인증 토큰으로 본 API를 호출한 결과, 결정세액과 퇴직연금세액공제금이 계산되어 API 응답으로 확인할 수 있습니다. 결정세액 계산과 관련된 다양한 예외 케이스를 단위테스트로 검증합니다.\n\n### IV. 프로젝트 구조\n본 프로젝트는 4개의 주요 패키지로 구성되어 있습니다.\n- **domain**: 핵심 비지니스 로직과 상태를 모델링합니다.\n- **usecase**: 도메인 모델을 조합하여 비지니스 기능을 구현합니다.\n- **repository**: 데이터 영속화 기능을 구현합니다.\n- **controller**: 클라이언트와의 통신을 위한 기능을 구현합니다.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmjbae%2Fprecisiontaxcalc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmjbae%2Fprecisiontaxcalc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmjbae%2Fprecisiontaxcalc/lists"}