|
|
@ -66,8 +66,9 @@ class MinOrderInfo { |
|
|
|
int orderSource, |
|
|
|
int orderSource, |
|
|
|
dynamic address, |
|
|
|
dynamic address, |
|
|
|
dynamic discountPercent, |
|
|
|
dynamic discountPercent, |
|
|
|
String discountAmount, |
|
|
|
String discountAmount, |
|
|
|
dynamic discountType, |
|
|
|
dynamic discountType, |
|
|
|
|
|
|
|
dynamic uniqueDiscountType, |
|
|
|
dynamic discountMoney, |
|
|
|
dynamic discountMoney, |
|
|
|
dynamic overTime, |
|
|
|
dynamic overTime, |
|
|
|
List<OrderProductVOList> orderProductVOList, |
|
|
|
List<OrderProductVOList> orderProductVOList, |
|
|
@ -153,6 +154,7 @@ class MinOrderInfo { |
|
|
|
this.discountPercent = discountPercent; |
|
|
|
this.discountPercent = discountPercent; |
|
|
|
this.discountAmount = discountAmount; |
|
|
|
this.discountAmount = discountAmount; |
|
|
|
this.discountType = discountType; |
|
|
|
this.discountType = discountType; |
|
|
|
|
|
|
|
this.uniqueDiscountType = uniqueDiscountType; |
|
|
|
this.discountMoney = discountMoney; |
|
|
|
this.discountMoney = discountMoney; |
|
|
|
this.overTime = overTime; |
|
|
|
this.overTime = overTime; |
|
|
|
this.orderProductVOList = orderProductVOList; |
|
|
|
this.orderProductVOList = orderProductVOList; |
|
|
@ -241,6 +243,7 @@ class MinOrderInfo { |
|
|
|
this.discountPercent = json['discountPercent']; |
|
|
|
this.discountPercent = json['discountPercent']; |
|
|
|
this.discountAmount = json['discountAmount']; |
|
|
|
this.discountAmount = json['discountAmount']; |
|
|
|
this.discountType = json['discountType']; |
|
|
|
this.discountType = json['discountType']; |
|
|
|
|
|
|
|
this.uniqueDiscountType = json['uniqueDiscountType']; |
|
|
|
this.discountMoney = json['discountMoney']; |
|
|
|
this.discountMoney = json['discountMoney']; |
|
|
|
this.overTime = json['overTime']; |
|
|
|
this.overTime = json['overTime']; |
|
|
|
if (json['orderProductVOList'] != null) { |
|
|
|
if (json['orderProductVOList'] != null) { |
|
|
@ -332,6 +335,7 @@ class MinOrderInfo { |
|
|
|
dynamic discountPercent; |
|
|
|
dynamic discountPercent; |
|
|
|
String discountAmount; |
|
|
|
String discountAmount; |
|
|
|
dynamic discountType; |
|
|
|
dynamic discountType; |
|
|
|
|
|
|
|
dynamic uniqueDiscountType; |
|
|
|
dynamic discountMoney; |
|
|
|
dynamic discountMoney; |
|
|
|
dynamic overTime; |
|
|
|
dynamic overTime; |
|
|
|
List<OrderProductVOList> orderProductVOList; |
|
|
|
List<OrderProductVOList> orderProductVOList; |
|
|
@ -420,6 +424,7 @@ class MinOrderInfo { |
|
|
|
map['discountPercent'] = this.discountPercent; |
|
|
|
map['discountPercent'] = this.discountPercent; |
|
|
|
map['discountAmount'] = this.discountAmount; |
|
|
|
map['discountAmount'] = this.discountAmount; |
|
|
|
map['discountType'] = this.discountType; |
|
|
|
map['discountType'] = this.discountType; |
|
|
|
|
|
|
|
map['uniqueDiscountType'] = this.uniqueDiscountType; |
|
|
|
map['discountMoney'] = this.discountMoney; |
|
|
|
map['discountMoney'] = this.discountMoney; |
|
|
|
map['overTime'] = this.overTime; |
|
|
|
map['overTime'] = this.overTime; |
|
|
|
if (this.orderProductVOList != null) { |
|
|
|
if (this.orderProductVOList != null) { |
|
|
|