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
758 B

import 'package:json_annotation/json_annotation.dart';
part 'exchange_order_goods.g.dart';
@JsonSerializable(explicitToJson: true)
class ExchangeOrderGoods {
ExchangeOrderGoods();
String? id;
String? createTime;
String? createUser;
String? updateTime;
String? updateUser;
String? orderId;
String? goodsId;
String? categoryId;
String? name;
String? description;
String? worth;
String? price;
String? money;
String? couponId;
bool? canPick;
bool? canDelivery;
String? goodsMainImg;
String? goodsViceImg;
int? goodsNumber;
int? isDelete;
factory ExchangeOrderGoods.fromJson(Map<String, dynamic> json) => _$ExchangeOrderGoodsFromJson(json);
Map<String, dynamic> toJson() => _$ExchangeOrderGoodsToJson(this);
}