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.
49 lines
1.2 KiB
49 lines
1.2 KiB
10 months ago
|
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:huixiang/generated/json/base/json_field.dart';
|
||
|
import 'package:huixiang/generated/json/order_product_vo.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
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
|
||
|
|
||
|
|