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.
47 lines
943 B
47 lines
943 B
/// vipNo : null |
|
/// nickname : "回乡_019921" |
|
/// headimg : "" |
|
/// userType : true |
|
/// sex : "" |
|
/// level : 1 |
|
/// addressId : "0" |
|
/// remark : "" |
|
/// phone : "15827991714" |
|
/// createTime : "2021-06-21 15:40:38" |
|
/// birth : "" |
|
/// balance : null |
|
/// money : "0.00" |
|
/// points : "0" |
|
/// isBind : null |
|
/// memberRankVo : null |
|
import 'package:huixiang/retrofit/data/base_data.dart'; |
|
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'userinfo.g.dart'; |
|
|
|
@JsonSerializable() |
|
class Userinfo { |
|
Userinfo(); |
|
|
|
dynamic vipNo; |
|
String nickname; |
|
String headimg; |
|
bool userType; |
|
String sex; |
|
int level; |
|
String addressId; |
|
String remark; |
|
String phone; |
|
String createTime; |
|
String birth; |
|
dynamic balance; |
|
String money; |
|
String points; |
|
dynamic isBind; |
|
dynamic memberRankVo; |
|
|
|
|
|
factory Userinfo.fromJson(Map<String, dynamic> json) => _$UserinfoFromJson(json); |
|
Map<String, dynamic> toJson() => _$UserinfoToJson(this); |
|
|
|
} |