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.
47 lines
1.1 KiB
47 lines
1.1 KiB
import 'package:huixiang/data/act_info.dart'; |
|
import 'package:huixiang/data/additional_comment.dart'; |
|
import 'package:huixiang/data/comment.dart'; |
|
import 'package:huixiang/data/set_meal_data.dart'; |
|
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'order_product_vo.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
class OrderProductVO { |
|
OrderProductVO(); |
|
|
|
ActInfo? actInfo; |
|
AdditionalComment? additionalComment; |
|
int? buyNum; |
|
String? canApplyIntervention; |
|
Comment? comment; |
|
String? commentStatus; |
|
String? discountAmount; |
|
String? id; |
|
String? productId; |
|
String? productName; |
|
String? returnCode; |
|
String? returnStatus; |
|
String? returnType; |
|
String? sellPrice; |
|
String? skuId; |
|
String? skuImg; |
|
String? skuNameStr; |
|
List<SetMealData>? setMealDataList; |
|
String? packagingFee; |
|
|
|
factory OrderProductVO.fromJson(Map<String, dynamic> json) => _$OrderProductVOFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => _$OrderProductVOToJson(this); |
|
} |
|
|
|
/// couponDiscountAmount : 0 |
|
/// couponDiscountRate : 0 |
|
/// couponId : 0 |
|
/// couponType : 0 |
|
/// discountAmount : 0 |
|
/// discountRate : 0 |
|
/// promotionId : 0 |
|
/// promotionType : 0 |
|
|
|
|
|
|