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.
42 lines
937 B
42 lines
937 B
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'member_source.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
class MemberSource { |
|
String? id = ''; |
|
String? createTime = ''; |
|
String? createUser = ''; |
|
String? updateTime = ''; |
|
String? updateUser = ''; |
|
String? mid = ''; |
|
String? openid = ''; |
|
String? nickname = ''; |
|
String? headimg = ''; |
|
String? balance = ''; |
|
String? realRecharge = ''; |
|
String? sex = ''; |
|
bool? status = false; |
|
bool? onCredit = false; |
|
String? loginTime = ''; |
|
int? loginNum = 0; |
|
String? tenantCode = ''; |
|
int? source = 0; |
|
String? expendAmount = ''; |
|
int? buyTimes = 0; |
|
String? lastBuyTime = ''; |
|
@JsonKey(name: "vip_no") |
|
dynamic vipNo; |
|
dynamic expireTime; |
|
int? integral = 0; |
|
int? level = 0; |
|
dynamic vipRegStore; |
|
|
|
MemberSource(); |
|
|
|
factory MemberSource.fromJson(Map<String, dynamic> json) => _$MemberSourceFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => _$MemberSourceToJson(this); |
|
|
|
|
|
} |