You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
942 B
23 lines
942 B
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'store_total_money_info.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
StoreTotalMoneyInfo _$StoreTotalMoneyInfoFromJson(Map<String, dynamic> json) => |
|
StoreTotalMoneyInfo() |
|
..storeTotalMoney = json['storeTotalMoney'] as String? |
|
..paySumCount = (json['paySumCount'] as num?)?.toInt() |
|
..memberCount = (json['memberCount'] as num?)?.toInt() |
|
..memberTotalBalance = json['memberTotalBalance'] as String?; |
|
|
|
Map<String, dynamic> _$StoreTotalMoneyInfoToJson( |
|
StoreTotalMoneyInfo instance) => |
|
<String, dynamic>{ |
|
'storeTotalMoney': instance.storeTotalMoney, |
|
'paySumCount': instance.paySumCount, |
|
'memberCount': instance.memberCount, |
|
'memberTotalBalance': instance.memberTotalBalance, |
|
};
|
|
|