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.
46 lines
1.8 KiB
46 lines
1.8 KiB
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'member_recharge.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
MemberRecharge _$MemberRechargeFromJson(Map<String, dynamic> json) => |
|
MemberRecharge() |
|
..id = json['id'] as String? |
|
..rechargeMoney = json['rechargeMoney'] as String? |
|
..giftdMoney = json['giftdMoney'] as String? |
|
..limitNum = (json['limitNum'] as num?)?.toInt() |
|
..gitfdCouponId = json['gitfdCouponId'] |
|
..startDate = json['startDate'] |
|
..endDate = json['endDate'] |
|
..startTime = json['startTime'] |
|
..endTime = json['endTime'] |
|
..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? |
|
..sortValue = (json['sortValue'] as num?)?.toInt() |
|
..useNum = (json['useNum'] as num?)?.toInt(); |
|
|
|
Map<String, dynamic> _$MemberRechargeToJson(MemberRecharge instance) => |
|
<String, dynamic>{ |
|
'id': instance.id, |
|
'rechargeMoney': instance.rechargeMoney, |
|
'giftdMoney': instance.giftdMoney, |
|
'limitNum': instance.limitNum, |
|
'gitfdCouponId': instance.gitfdCouponId, |
|
'startDate': instance.startDate, |
|
'endDate': instance.endDate, |
|
'startTime': instance.startTime, |
|
'endTime': instance.endTime, |
|
'tenantCode': instance.tenantCode, |
|
'createTime': instance.createTime, |
|
'isDeleted': instance.isDeleted, |
|
'rechargeType': instance.rechargeType, |
|
'remark': instance.remark, |
|
'sortValue': instance.sortValue, |
|
'useNum': instance.useNum, |
|
};
|
|
|