-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 사업자 유형 개인/법인 타입으로 수정 - enum에 @Getter 추가
- Loading branch information
1 parent
9924f78
commit 3ca7bf1
Showing
4 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
10 changes: 3 additions & 7 deletions
10
src/main/java/com/seveneleven/devlens/domain/member/constant/BusinessType.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,17 +1,13 @@ | ||
package com.seveneleven.devlens.domain.member.constant; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Getter | ||
@RequiredArgsConstructor | ||
public enum BusinessType { | ||
INDIVIDUAL("개인사업자"), | ||
CORPORATION("법인사업자"), | ||
FREELANCER("프리랜서"), | ||
NON_PROFIT("비영리사업자"), | ||
FOREIGN("외국인사업자"), | ||
SMALL_BUSINESS("소기업/소상공인"), | ||
STARTUP("스타트업"), | ||
PROFESSIONAL("전문직 사업자"); | ||
CORPORATION("법인사업자"); | ||
|
||
private final String description; | ||
} |
2 changes: 2 additions & 0 deletions
2
src/main/java/com/seveneleven/devlens/domain/member/constant/MemberStatus.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
2 changes: 2 additions & 0 deletions
2
src/main/java/com/seveneleven/devlens/domain/member/constant/Role.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
2 changes: 2 additions & 0 deletions
2
src/main/java/com/seveneleven/devlens/domain/member/constant/TermsStatus.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