Skip to content

Commit

Permalink
chore: 점포 명 길이 제한을 제거한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarltj authored Sep 16, 2024
1 parent 50875c9 commit 2a79b8a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
@AllArgsConstructor
public class CreateLedgerRequest {
@NotBlank(message = "storeInfo를 입력해주세요.")
@Size(min = 1, max = 20, message = "storeInfo 1자 - 20자 입력해주세요.")
private String storeInfo;

@NotNull(message = "fundType(INCOME, EXPENSE)를 입력해주세요.")
Expand All @@ -36,4 +35,4 @@ public class CreateLedgerRequest {

@Size(max = 12, message = "증빙 자료 12개 이하 입력해주세요.")
private List<String> documentImageUrls;
}
}

0 comments on commit 2a79b8a

Please sign in to comment.