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.
34 lines
796 B
34 lines
796 B
import 'package:huixiang/data/exchange_order_goods.dart'; |
|
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'exchange_order.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
class ExchangeOrder { |
|
ExchangeOrder(); |
|
|
|
String? id; |
|
String? createTime; |
|
String? createUser; |
|
String? updateTime; |
|
String? updateUser; |
|
String? storeId; |
|
String? mid; |
|
String? orderCode; |
|
String? amount; |
|
String? money; |
|
int? payStatus; |
|
int? payType; |
|
int? sendStatus; |
|
String? address; |
|
String? storeName; |
|
String? recAddress; |
|
int? state; |
|
int? useTyped; |
|
int? isDelete; |
|
List<ExchangeOrderGoods>? creditOrderDetailList; |
|
|
|
factory ExchangeOrder.fromJson(Map<String, dynamic> json) => _$ExchangeOrderFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => _$ExchangeOrderToJson(this); |
|
}
|
|
|