feat: 결재·마스터 실연동 업데이트

This commit is contained in:
JiWoong Sul
2025-10-14 18:10:24 +09:00
parent 1325109fba
commit 8067416c09
66 changed files with 2129 additions and 222 deletions

View File

@@ -14,6 +14,9 @@ abstract class CustomerRepository {
bool? isActive,
});
/// 고객 단건 상세를 조회한다.
Future<Customer> fetchDetail(int id, {bool includeZipcode = true});
/// 고객을 생성한다.
Future<Customer> create(CustomerInput input);