backup: 사용하지 않는 파일 삭제 전 복구 지점
- 전체 371개 파일 중 82개 미사용 파일 식별 - Phase 1: 33개 파일 삭제 예정 (100% 안전) - Phase 2: 30개 파일 삭제 검토 예정 - Phase 3: 19개 파일 수동 검토 예정 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -11,7 +11,13 @@ _$RentDtoImpl _$$RentDtoImplFromJson(Map<String, dynamic> json) =>
|
||||
id: (json['id'] as num?)?.toInt(),
|
||||
startedAt: DateTime.parse(json['started_at'] as String),
|
||||
endedAt: DateTime.parse(json['ended_at'] as String),
|
||||
equipmentHistoryId: (json['equipment_history_Id'] as num).toInt(),
|
||||
equipmentHistoryId: (json['equipment_history_id'] as num?)?.toInt(),
|
||||
equipmentSerial: json['equipment_serial'] as String?,
|
||||
equipmentModel: json['equipment_model'] as String?,
|
||||
companyName: json['company_name'] as String?,
|
||||
daysRemaining: (json['days_remaining'] as num?)?.toInt(),
|
||||
isActive: json['is_active'] as bool?,
|
||||
totalDays: (json['total_days'] as num?)?.toInt(),
|
||||
equipmentHistory: json['equipmentHistory'] == null
|
||||
? null
|
||||
: EquipmentHistoryDto.fromJson(
|
||||
@@ -23,7 +29,13 @@ Map<String, dynamic> _$$RentDtoImplToJson(_$RentDtoImpl instance) =>
|
||||
'id': instance.id,
|
||||
'started_at': instance.startedAt.toIso8601String(),
|
||||
'ended_at': instance.endedAt.toIso8601String(),
|
||||
'equipment_history_Id': instance.equipmentHistoryId,
|
||||
'equipment_history_id': instance.equipmentHistoryId,
|
||||
'equipment_serial': instance.equipmentSerial,
|
||||
'equipment_model': instance.equipmentModel,
|
||||
'company_name': instance.companyName,
|
||||
'days_remaining': instance.daysRemaining,
|
||||
'is_active': instance.isActive,
|
||||
'total_days': instance.totalDays,
|
||||
'equipmentHistory': instance.equipmentHistory,
|
||||
};
|
||||
|
||||
@@ -31,7 +43,7 @@ _$RentRequestDtoImpl _$$RentRequestDtoImplFromJson(Map<String, dynamic> json) =>
|
||||
_$RentRequestDtoImpl(
|
||||
startedAt: DateTime.parse(json['started_at'] as String),
|
||||
endedAt: DateTime.parse(json['ended_at'] as String),
|
||||
equipmentHistoryId: (json['equipment_history_Id'] as num).toInt(),
|
||||
equipmentHistoryId: (json['equipment_history_id'] as num).toInt(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$$RentRequestDtoImplToJson(
|
||||
@@ -39,7 +51,7 @@ Map<String, dynamic> _$$RentRequestDtoImplToJson(
|
||||
<String, dynamic>{
|
||||
'started_at': instance.startedAt.toIso8601String(),
|
||||
'ended_at': instance.endedAt.toIso8601String(),
|
||||
'equipment_history_Id': instance.equipmentHistoryId,
|
||||
'equipment_history_id': instance.equipmentHistoryId,
|
||||
};
|
||||
|
||||
_$RentUpdateRequestDtoImpl _$$RentUpdateRequestDtoImplFromJson(
|
||||
@@ -51,7 +63,7 @@ _$RentUpdateRequestDtoImpl _$$RentUpdateRequestDtoImplFromJson(
|
||||
endedAt: json['ended_at'] == null
|
||||
? null
|
||||
: DateTime.parse(json['ended_at'] as String),
|
||||
equipmentHistoryId: (json['equipment_history_Id'] as num?)?.toInt(),
|
||||
equipmentHistoryId: (json['equipment_history_id'] as num?)?.toInt(),
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$$RentUpdateRequestDtoImplToJson(
|
||||
@@ -59,7 +71,7 @@ Map<String, dynamic> _$$RentUpdateRequestDtoImplToJson(
|
||||
<String, dynamic>{
|
||||
'started_at': instance.startedAt?.toIso8601String(),
|
||||
'ended_at': instance.endedAt?.toIso8601String(),
|
||||
'equipment_history_Id': instance.equipmentHistoryId,
|
||||
'equipment_history_id': instance.equipmentHistoryId,
|
||||
};
|
||||
|
||||
_$RentListResponseImpl _$$RentListResponseImplFromJson(
|
||||
|
||||
Reference in New Issue
Block a user