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.
37 lines
864 B
37 lines
864 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'vip_record_details.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class VipRecordDetails {
|
||
|
String? id = '';
|
||
|
String? createTime = '';
|
||
|
String? createUser = '';
|
||
|
String? updateTime = '';
|
||
|
String? updateUser = '';
|
||
|
String? mid = '';
|
||
|
String? linkId = '';
|
||
|
int? pm = 0;
|
||
|
String? title = '';
|
||
|
String? category = '';
|
||
|
String? type = '';
|
||
|
String? number = '';
|
||
|
String? realNumber = '';
|
||
|
String? balance = '';
|
||
|
String? mark = '';
|
||
|
bool? status = false;
|
||
|
bool? isDeleted = false;
|
||
|
String? tenantName = '';
|
||
|
String? rechargeMoney = '';
|
||
|
String? giftMoney = '';
|
||
|
String? totalMoney = '';
|
||
|
String? balanceMoney = '';
|
||
|
|
||
|
VipRecordDetails();
|
||
|
|
||
|
factory VipRecordDetails.fromJson(Map<String, dynamic> json) => _$VipRecordDetailsFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$VipRecordDetailsToJson(this);
|
||
|
|
||
|
|
||
|
}
|