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.
24 lines
514 B
24 lines
514 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'recharge.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class Recharge {
|
||
|
String? id = '';
|
||
|
String? rechargeMoney = '';
|
||
|
String? giftdMoney = '';
|
||
|
dynamic gitfdCouponId;
|
||
|
String? tenantCode = '';
|
||
|
String? createTime = '';
|
||
|
int? isDeleted = 0;
|
||
|
int? rechargeType = 0;
|
||
|
String? remark = '';
|
||
|
|
||
|
Recharge();
|
||
|
|
||
|
factory Recharge.fromJson(Map<String, dynamic> json) => _$RechargeFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$RechargeToJson(this);
|
||
|
|
||
|
|
||
|
}
|