Skip to content

Commit

Permalink
fix: yn enum 실제 값과 다른 문제 해소
Browse files Browse the repository at this point in the history
  • Loading branch information
JuneParkCode committed Aug 13, 2024
1 parent 510332d commit f4a817f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

@Getter
public enum CenterStation implements EnumCodeInterface {
NOT_CENTER_STATION("0"),
CENTER_STATION("1");
NOT_CENTER_STATION("N"),
CENTER_STATION("Y");

private final String code;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@Getter
public enum TurnStation implements EnumCodeInterface {
TURN_STATION("1"), NOT_TURN_STATION("0");
TURN_STATION("Y"), NOT_TURN_STATION("N");

private final String code;

Expand Down

0 comments on commit f4a817f

Please sign in to comment.