更新棉花糖

This commit is contained in:
wyf
2025-06-16 09:32:24 +08:00
parent d8b46c41ad
commit acde8340a8
27 changed files with 6762 additions and 658 deletions

View File

@@ -0,0 +1,26 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'mht_bluetooth_controller.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
MHTBlueToothModel _$MHTBlueToothModelFromJson(Map<String, dynamic> json) =>
MHTBlueToothModel()
..bluetooth = json['bluetooth'] as bool?
..singal = (json['singal'] as num?)?.toDouble()
..read = (json['read'] as num?)?.toInt()
..deviceType = (json['deviceType'] as num?)?.toInt()
..wifiPassShow = json['wifiPassShow'] as bool
..wifiPass = json['wifiPass'] as String?;
Map<String, dynamic> _$MHTBlueToothModelToJson(MHTBlueToothModel instance) =>
<String, dynamic>{
'bluetooth': instance.bluetooth,
'singal': instance.singal,
'read': instance.read,
'deviceType': instance.deviceType,
'wifiPassShow': instance.wifiPassShow,
'wifiPass': instance.wifiPass,
};