-
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.
* feat: 장부 상세내역 수정 V2 api를 구현한다. (#4) * feat: totalbalance 관련 에러코드를 추가한다. * chore: name이 null인 경우 임시 닉네임을 기입한다. * refactor: 소속에서 강퇴되어도 재입장이 가능하다. (#5) * fix: 장부상세내역의 description을 300자 입력 가능토록 한다. * feat: 카카오 계정 탈퇴 시 서비스를 unlink한다. (#6) * feat: kakao adminKey를 프로퍼티에 추가한다. * feat: 카카오 계정 탈퇴 시 서비스를 unlink한다. * chore: docker-compose에 kakao Admin key를 추가한다.
- Loading branch information
Showing
14 changed files
with
172 additions
and
20 deletions.
There are no files selected for viewing
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
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
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
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
33 changes: 33 additions & 0 deletions
33
src/main/java/com/moneymong/domain/ledger/api/request/UpdateLedgerRequestV2.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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package com.moneymong.domain.ledger.api.request; | ||
|
||
import jakarta.validation.constraints.NotBlank; | ||
import jakarta.validation.constraints.NotNull; | ||
import jakarta.validation.constraints.Size; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.time.ZonedDateTime; | ||
import java.util.List; | ||
|
||
@Getter | ||
@NoArgsConstructor | ||
public class UpdateLedgerRequestV2 { | ||
@NotBlank(message = "storeInfo를 입력해주세요.") | ||
@Size(min = 1, max = 20, message = "storeInfo 1자 - 20자 입력해주세요.") | ||
private String storeInfo; | ||
|
||
@NotNull(message = "amount를 입력해주세요.") | ||
private Integer amount; | ||
|
||
@NotBlank(message = "description를 입력해주세요.") | ||
private String description; | ||
|
||
@NotNull(message = "paymentDate를 입력해주세요.") | ||
private ZonedDateTime paymentDate; | ||
|
||
@Size(max = 12, message = "영수증 12개 이하 입력해주세요.") | ||
private List<String> receiptImageUrls; | ||
|
||
@Size(max = 12, message = "증빙 자료 12개 이하 입력해주세요.") | ||
private List<String> documentImageUrls; | ||
} |
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
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
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
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
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
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
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
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
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