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.
30 lines
1.2 KiB
30 lines
1.2 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'recharge.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
Recharge _$RechargeFromJson(Map<String, dynamic> json) => Recharge() |
|
..id = json['id'] as String? |
|
..rechargeMoney = json['rechargeMoney'] as String? |
|
..giftdMoney = json['giftdMoney'] as String? |
|
..gitfdCouponId = json['gitfdCouponId'] |
|
..tenantCode = json['tenantCode'] as String? |
|
..createTime = json['createTime'] as String? |
|
..isDeleted = (json['isDeleted'] as num?)?.toInt() |
|
..rechargeType = (json['rechargeType'] as num?)?.toInt() |
|
..remark = json['remark'] as String?; |
|
|
|
Map<String, dynamic> _$RechargeToJson(Recharge instance) => <String, dynamic>{ |
|
'id': instance.id, |
|
'rechargeMoney': instance.rechargeMoney, |
|
'giftdMoney': instance.giftdMoney, |
|
'gitfdCouponId': instance.gitfdCouponId, |
|
'tenantCode': instance.tenantCode, |
|
'createTime': instance.createTime, |
|
'isDeleted': instance.isDeleted, |
|
'rechargeType': instance.rechargeType, |
|
'remark': instance.remark, |
|
};
|
|
|