24 lines
773 B
Dart
24 lines
773 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'device_list_bean.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
DeviceListBean _$DeviceListBeanFromJson(Map<String, dynamic> json) =>
|
|
DeviceListBean(
|
|
(json['dictCode'] as num?)?.toInt(),
|
|
(json['dictSort'] as num?)?.toInt(),
|
|
json['dictLabel'] as String?,
|
|
json['dictValue'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$DeviceListBeanToJson(DeviceListBean instance) =>
|
|
<String, dynamic>{
|
|
'dictCode': instance.dictCode,
|
|
'dictSort': instance.dictSort,
|
|
'dictLabel': instance.dictLabel,
|
|
'dictValue': instance.dictValue,
|
|
};
|