|
|
|
@ -150,6 +150,7 @@ class ProductVips {
|
|
|
|
|
dynamic materialId, |
|
|
|
|
String details, |
|
|
|
|
String thumbnailImg, |
|
|
|
|
String image, |
|
|
|
|
String info, |
|
|
|
|
num buyCount, |
|
|
|
|
num sellCountLimit, |
|
|
|
@ -190,6 +191,7 @@ class ProductVips {
|
|
|
|
|
_materialId = materialId; |
|
|
|
|
_details = details; |
|
|
|
|
_thumbnailImg = thumbnailImg; |
|
|
|
|
_image = image; |
|
|
|
|
_info = info; |
|
|
|
|
_buyCount = buyCount; |
|
|
|
|
_sellCountLimit = sellCountLimit; |
|
|
|
@ -233,6 +235,7 @@ class ProductVips {
|
|
|
|
|
_materialId = json['materialId']; |
|
|
|
|
_details = json['details']; |
|
|
|
|
_thumbnailImg = json['thumbnailImg']; |
|
|
|
|
_image = json['image']; |
|
|
|
|
_info = json['info']; |
|
|
|
|
_buyCount = json['buyCount']; |
|
|
|
|
_sellCountLimit = json['sellCountLimit']; |
|
|
|
@ -274,6 +277,7 @@ class ProductVips {
|
|
|
|
|
dynamic _materialId; |
|
|
|
|
String _details; |
|
|
|
|
String _thumbnailImg; |
|
|
|
|
String _image; |
|
|
|
|
String _info; |
|
|
|
|
num _buyCount; |
|
|
|
|
num _sellCountLimit; |
|
|
|
@ -314,6 +318,7 @@ ProductVips copyWith({ String id,
|
|
|
|
|
dynamic materialId, |
|
|
|
|
String details, |
|
|
|
|
String thumbnailImg, |
|
|
|
|
String image, |
|
|
|
|
String info, |
|
|
|
|
num buyCount, |
|
|
|
|
num sellCountLimit, |
|
|
|
@ -354,6 +359,7 @@ ProductVips copyWith({ String id,
|
|
|
|
|
materialId: materialId ?? _materialId, |
|
|
|
|
details: details ?? _details, |
|
|
|
|
thumbnailImg: thumbnailImg ?? _thumbnailImg, |
|
|
|
|
image:image ?? _image, |
|
|
|
|
info: info ?? _info, |
|
|
|
|
buyCount: buyCount ?? _buyCount, |
|
|
|
|
sellCountLimit: sellCountLimit ?? _sellCountLimit, |
|
|
|
@ -395,6 +401,7 @@ ProductVips copyWith({ String id,
|
|
|
|
|
dynamic get materialId => _materialId; |
|
|
|
|
String get details => _details; |
|
|
|
|
String get thumbnailImg => _thumbnailImg; |
|
|
|
|
String get image => _image; |
|
|
|
|
String get info => _info; |
|
|
|
|
num get buyCount => _buyCount; |
|
|
|
|
num get sellCountLimit => _sellCountLimit; |
|
|
|
@ -438,6 +445,7 @@ ProductVips copyWith({ String id,
|
|
|
|
|
map['materialId'] = _materialId; |
|
|
|
|
map['details'] = _details; |
|
|
|
|
map['thumbnailImg'] = _thumbnailImg; |
|
|
|
|
map['image'] = _image; |
|
|
|
|
map['info'] = _info; |
|
|
|
|
map['buyCount'] = _buyCount; |
|
|
|
|
map['sellCountLimit'] = _sellCountLimit; |
|
|
|
|