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
526 B
24 lines
526 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'refund_reason.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class RefundReason {
|
||
|
String? id = '';
|
||
|
String? createTime = '';
|
||
|
String? createUser = '';
|
||
|
String? updateTime = '';
|
||
|
String? updateUser = '';
|
||
|
String? storeId = '';
|
||
|
int? type = 0;
|
||
|
String? reason = '';
|
||
|
int? isDelete = 0;
|
||
|
|
||
|
RefundReason();
|
||
|
|
||
|
factory RefundReason.fromJson(Map<String, dynamic> json) => _$RefundReasonFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$RefundReasonToJson(this);
|
||
|
|
||
|
|
||
|
}
|