본문 바로가기

대출7

이용 약관 도메인 약관 등록 Request POST : http://127.0.0.1:8080/terms { "name":"신청 이용 약관", "termsDetailUrl":"https://abc-storage.acc/dasdasd" } Response { "result": { "code": "0000", "desc": "success" }, "data": { "termsId": 1, "name": "신청 이용 약관", "termsDetailUrl": "https://abc-storage.acc/dasdasd", "createdAt": "2023-01-09T01:43:06.920793", "updatedAt": "2023-01-09T01:43:06.920793" }, { "termsId": 2, "name": "신청 이용.. 2023. 1. 8.
대출 신청 도메인 - 신청서 작성 - 약관 등록 - 심사에 필요한 서류 제출 - 약관 등록은 분리하여 구현 - 신청정보 작성과 파일 업로드도 분리하여 구현 - 신청 조건에 따른 신청 상태 변경도 분리하여 구현 대출 신청 등록 Request POST : http://127.0.0.1:8080/applications { "name":"김김김", "cellPhone":"010-1111-2222", "email":"dad@kkk.com", "hopeAmount":"50000000" } Response { "result": { "code": "0000", "desc": "success" }, "data": { "applicationId": 1, "name": "김김김", "cellPhone": "010-1111-2222", "em.. 2023. 1. 8.
대출 상담 도메인 상담 : 문제를 해결하거나 궁금증을 풀기 위하여 서로 의논함 대출 상담 도메인 테이블 정의 -ID Long -Soft Delete -상담을 위해 필요한 기본 테이블 정의 대출 상담 등록 Request POST : http://127.0.0.1:8080/counsels { "name":"김대출", "cellPhone":"010-1111-2222", "email":"dddd@naver.com", "memo":"대출 상담 바람", "address":"서울 어딘구 어딘동", "addressDetail":"123-45", "zipCode":"11122" } Response { "result": { "code": "0000", "desc": "success" }, "data": { "counselId": 1, "n.. 2023. 1. 7.