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.
32 lines
682 B
32 lines
682 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'bus_recharge.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class BusRecharge {
|
||
|
String? id = '';
|
||
|
String? rechargeMoney = '';
|
||
|
String? giftdMoney = '';
|
||
|
int? limitNum = 0;
|
||
|
dynamic gitfdCouponId;
|
||
|
dynamic startDate;
|
||
|
dynamic endDate;
|
||
|
dynamic startTime;
|
||
|
dynamic endTime;
|
||
|
String? tenantCode = '';
|
||
|
String? createTime = '';
|
||
|
int? isDeleted = 0;
|
||
|
int? rechargeType = 0;
|
||
|
String? remark = '';
|
||
|
int? sortValue = 0;
|
||
|
int? useNum = 0;
|
||
|
dynamic mid;
|
||
|
|
||
|
BusRecharge();
|
||
|
|
||
|
factory BusRecharge.fromJson(Map<String, dynamic> json) => _$BusRechargeFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$BusRechargeToJson(this);
|
||
|
|
||
|
|
||
|
}
|