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.
24 lines
591 B
24 lines
591 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'preferential.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class PreferentialList {
|
||
|
String? id = '';
|
||
|
String? rechargeMoney = '';
|
||
|
String? giftdMoney = '';
|
||
|
dynamic gitfdCouponId;
|
||
|
String? tenantCode = '';
|
||
|
String? createTime = '';
|
||
|
int? isDeleted = 0;
|
||
|
int? rechargeType = 0;
|
||
|
String? remark = '';
|
||
|
int? sortValue = 0;
|
||
|
|
||
|
PreferentialList();
|
||
|
|
||
|
factory PreferentialList.fromJson(Map<String, dynamic> json) => _$PreferentialListFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$PreferentialListToJson(this);
|
||
|
|
||
|
}
|