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.
30 lines
683 B
30 lines
683 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'coupon_detail.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class CouponDetail {
|
||
|
String? id = '';
|
||
|
String? createTime = '';
|
||
|
String? createUser = '';
|
||
|
String? updateTime = '';
|
||
|
String? updateUser = '';
|
||
|
String? mid = '';
|
||
|
String? couponId = '';
|
||
|
String? receiveTime = '';
|
||
|
dynamic useTime;
|
||
|
String? useTimeStart = '';
|
||
|
String? useTimeEnd = '';
|
||
|
int? status = 0;
|
||
|
bool? isDeleted = false;
|
||
|
String? tenantCode = '';
|
||
|
String? couponCode = '';
|
||
|
|
||
|
CouponDetail();
|
||
|
|
||
|
factory CouponDetail.fromJson(Map<String, dynamic> json) => _$CouponDetailFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$CouponDetailToJson(this);
|
||
|
|
||
|
|
||
|
}
|