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.
35 lines
834 B
35 lines
834 B
import 'package:huixiang/generated/json/base/json_field.dart'; |
|
import 'package:huixiang/generated/json/vip_benefit.g.dart'; |
|
import 'dart:convert'; |
|
export 'package:huixiang/generated/json/vip_benefit.g.dart'; |
|
|
|
@JsonSerializable() |
|
class VipBenefit { |
|
String? id = ''; |
|
String? createTime = ''; |
|
String? createUser = ''; |
|
String? updateTime = ''; |
|
String? updateUser = ''; |
|
String? code = ''; |
|
String? name = ''; |
|
String? icon = ''; |
|
String? iconGrey = ''; |
|
String? introduce = ''; |
|
String? describes = ''; |
|
bool? actived = false; |
|
int? sort = 0; |
|
int? isDelete = 0; |
|
bool? have = false; |
|
String? config = ''; |
|
|
|
VipBenefit(); |
|
|
|
factory VipBenefit.fromJson(Map<String, dynamic> json) => $VipBenefitFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => $VipBenefitToJson(this); |
|
|
|
@override |
|
String toString() { |
|
return jsonEncode(this); |
|
} |
|
} |