사용하지 않는 파일 정리 전 백업 (Phase 10 완료 후 상태)
This commit is contained in:
@@ -6,6 +6,14 @@ class ApiEndpoints {
|
||||
static const String refresh = '/auth/refresh';
|
||||
static const String me = '/me';
|
||||
|
||||
// 벤더 관리
|
||||
static const String vendors = '/vendors';
|
||||
static const String vendorsSearch = '/vendors/search';
|
||||
|
||||
// 모델 관리
|
||||
static const String models = '/models';
|
||||
static const String modelsByVendor = '/models/by-vendor';
|
||||
|
||||
// 장비 관리
|
||||
static const String equipment = '/equipment';
|
||||
static const String equipmentSearch = '/equipment/search';
|
||||
@@ -39,7 +47,11 @@ class ApiEndpoints {
|
||||
static const String licensesAssign = '/licenses/{id}/assign';
|
||||
static const String licensesUnassign = '/licenses/{id}/unassign';
|
||||
|
||||
// 창고 위치 관리
|
||||
// 창고 관리 (백엔드 API와 일치)
|
||||
static const String warehouses = '/warehouses';
|
||||
static const String warehousesSearch = '/warehouses/search';
|
||||
|
||||
// 창고 위치 관리 (기존 호환성 유지)
|
||||
static const String warehouseLocations = '/warehouse-locations';
|
||||
static const String warehouseLocationsSearch = '/warehouse-locations/search';
|
||||
static const String warehouseEquipment = '/warehouse-locations/{id}/equipment';
|
||||
@@ -75,6 +87,15 @@ class ApiEndpoints {
|
||||
static const String lookups = '/lookups';
|
||||
static const String categories = '/lookups/categories';
|
||||
|
||||
// 우편번호 관리
|
||||
static const String zipcodes = '/zipcodes';
|
||||
|
||||
// 임대 관리
|
||||
static const String rents = '/rents';
|
||||
static const String rentsActive = '/rents/active';
|
||||
static const String rentsOverdue = '/rents/overdue';
|
||||
static const String rentsStats = '/rents/stats';
|
||||
|
||||
// 동적 엔드포인트 생성 메서드
|
||||
static String licenseById(String id) => '/licenses/$id';
|
||||
static String assignLicense(String id) => '/licenses/$id/assign';
|
||||
|
||||
Reference in New Issue
Block a user