File tree Expand file tree Collapse file tree
src/main/java/org/scoula/domain/remittancegroup Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ public record RemittanceGroupCheckResponse (
77 Boolean groupExists ,
88 Long remittanceGroupId ,
99 String groupCurrency ,
10- Integer remittance_date ,
10+ Integer remittanceDate ,
1111 Integer memberCount
1212){
1313
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ public RemittanceGroupCheckResponse checkRemittanceGroupExist(Member member) {
235235 if (member .getRemittanceGroupId () == null ) {
236236 return RemittanceGroupCheckResponse .builder ()
237237 .groupExists (false )
238- .remittance_date (null )
238+ .remittanceDate (null )
239239 .remittanceGroupId (null )
240240 .groupCurrency (null )
241241 .memberCount (0 )
@@ -247,7 +247,7 @@ public RemittanceGroupCheckResponse checkRemittanceGroupExist(Member member) {
247247 if (remittanceGroup == null ) {
248248 return RemittanceGroupCheckResponse .builder ()
249249 .groupExists (false )
250- .remittance_date (null )
250+ .remittanceDate (null )
251251 .remittanceGroupId (null )
252252 .groupCurrency (null )
253253 .memberCount (0 )
@@ -258,7 +258,7 @@ public RemittanceGroupCheckResponse checkRemittanceGroupExist(Member member) {
258258 return RemittanceGroupCheckResponse .builder ()
259259 .groupExists (true )
260260 .remittanceGroupId (remittanceGroup .getRemittanceGroupId ())
261- .remittance_date (remittanceGroup .getRemittanceDate ())
261+ .remittanceDate (remittanceGroup .getRemittanceDate ())
262262 .groupCurrency (remittanceGroup .getCurrency ().name ())
263263 .memberCount (remittanceGroup .getMemberCount ())
264264 .build ();
You can’t perform that action at this time.
0 commit comments