BAIS payments 멀티모듈 최소 구현 (BAIS-MULTI-1783814676)

This commit is contained in:
forge-bot 2026-07-12 00:09:48 +00:00
parent b97c721d0b
commit 22d42e16a0

View file

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