Skip to content

Commit

Permalink
[fix] #49 정렬기준 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
RyuKwanKon committed Jan 15, 2024
1 parent aad792d commit 632a43c
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@Getter
public enum PostSortType implements EnumField {
DATE("1", "register"),
REMAIN_DATE("2", "remain date"),
ACCURACY("3", "accuracy");
ACCURACY("1", "accuracy"),
REGISTER("2", "register"),
REMAIN_DATE("3", "remain date"),
SCRAP("4", "scrap");

private String code;
private String desc;
Expand Down

0 comments on commit 632a43c

Please sign in to comment.