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.
 
 
 
 
 
 

30 lines
732 B

import 'package:huixiang/data/mini_detail.dart';
import 'package:json_annotation/json_annotation.dart';
part 'good_list.g.dart';
@JsonSerializable(explicitToJson: true)
class GoodList {
String? productImg = '';
List<ProductSkuVOList>? productSkuVOList = [];
String? thumbnailImg = '';
String? tenantCode = '';
String? storeId = '';
String? productName = '';
bool? posShow = false;
String? price = '';
int? sellCount = 0;
String? details = '';
String? id = '';
String? applyPrice = '';
int? stock = 0;
int? status = 0;
String? info = '';
GoodList();
factory GoodList.fromJson(Map<String, dynamic> json) => _$GoodListFromJson(json);
Map<String, dynamic> toJson() => _$GoodListToJson(this);
}