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.
31 lines
670 B
31 lines
670 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'vip_benefit.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
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);
|
||
|
|
||
|
|
||
|
}
|