BAIS payments 멀티모듈 최소 구현 (BAIS-REM-1783820063)

This commit is contained in:
forge-bot 2026-07-12 01:34:49 +00:00
parent 67bc9b23c6
commit 3a5d2fa075

View file

@ -0,0 +1,9 @@
package com.klaro.bais.payments;
import org.apache.commons.lang3.StringUtils;
public class PaymentReferenceService {
public String normalize(String input) {
return StringUtils.trimToEmpty(input);
}
}