更新分享

This commit is contained in:
wyf
2025-04-28 15:37:58 +08:00
parent 850c34b408
commit eae7a2284d
116 changed files with 12143 additions and 3017 deletions

View File

@@ -0,0 +1,15 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'body_device_controller.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
BodyDeviceModel _$BodyDeviceModelFromJson(Map<String, dynamic> json) =>
BodyDeviceModel()..type = (json['type'] as num?)?.toInt();
Map<String, dynamic> _$BodyDeviceModelToJson(BodyDeviceModel instance) =>
<String, dynamic>{
'type': instance.type,
};