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.
35 lines
1.3 KiB
35 lines
1.3 KiB
1 month ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'preferential.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
PreferentialList _$PreferentialListFromJson(Map<String, dynamic> json) =>
|
||
|
PreferentialList()
|
||
|
..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?
|
||
|
..sortValue = (json['sortValue'] as num?)?.toInt();
|
||
|
|
||
|
Map<String, dynamic> _$PreferentialListToJson(PreferentialList 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,
|
||
|
'sortValue': instance.sortValue,
|
||
|
};
|