- 전체 371개 파일 중 82개 미사용 파일 식별 - Phase 1: 33개 파일 삭제 예정 (100% 안전) - Phase 2: 30개 파일 삭제 검토 예정 - Phase 3: 19개 파일 수동 검토 예정 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
47 lines
1.8 KiB
Dart
47 lines
1.8 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'stock_status_dto.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$StockStatusDtoImpl _$$StockStatusDtoImplFromJson(Map<String, dynamic> json) =>
|
|
_$StockStatusDtoImpl(
|
|
equipmentsId: (json['equipments_id'] as num).toInt(),
|
|
warehousesId: (json['warehouses_id'] as num).toInt(),
|
|
equipmentSerial: json['equipment_serial'] as String,
|
|
modelName: json['model_name'] as String?,
|
|
warehouseName: json['warehouse_name'] as String,
|
|
currentQuantity: (json['current_quantity'] as num).toInt(),
|
|
lastTransactionDate: json['last_transaction_date'] == null
|
|
? null
|
|
: DateTime.parse(json['last_transaction_date'] as String),
|
|
);
|
|
|
|
Map<String, dynamic> _$$StockStatusDtoImplToJson(
|
|
_$StockStatusDtoImpl instance) =>
|
|
<String, dynamic>{
|
|
'equipments_id': instance.equipmentsId,
|
|
'warehouses_id': instance.warehousesId,
|
|
'equipment_serial': instance.equipmentSerial,
|
|
'model_name': instance.modelName,
|
|
'warehouse_name': instance.warehouseName,
|
|
'current_quantity': instance.currentQuantity,
|
|
'last_transaction_date': instance.lastTransactionDate?.toIso8601String(),
|
|
};
|
|
|
|
_$StockStatusListResponseImpl _$$StockStatusListResponseImplFromJson(
|
|
Map<String, dynamic> json) =>
|
|
_$StockStatusListResponseImpl(
|
|
items: (json['items'] as List<dynamic>)
|
|
.map((e) => StockStatusDto.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
|
|
Map<String, dynamic> _$$StockStatusListResponseImplToJson(
|
|
_$StockStatusListResponseImpl instance) =>
|
|
<String, dynamic>{
|
|
'items': instance.items,
|
|
};
|