import 'package:huixiang/data/product_sku_list.dart'; import 'package:json_annotation/json_annotation.dart'; part 'home_recommend_list.g.dart'; @JsonSerializable(explicitToJson: true) class HomeRecommendList { String? id = ''; String? createTime = ''; String? createUser = ''; String? updateTime = ''; String? updateUser = ''; String? supplierName = ''; String? storeId = ''; String? categoryId = ''; String? groupId = ''; String? shortName = ''; String? productName = ''; String? sellDesc = ''; String? productCode = ''; String? weight = ''; String? applyPrice = ''; String? price = ''; int? stock = 0; int? sellCount = 0; int? needLogistics = 0; int? oversold = 0; int? organic = 0; int? status = 0; bool? posShow = false; int? productType = 0; int? productNumber = 0; int? setMeal = 0; int? attrStyle = 0; String? detail = ''; int? isDelete = 0; String? printerFlag = ''; dynamic materialId; List? imgs = []; List? productSkuList = []; HomeRecommendList(); factory HomeRecommendList.fromJson(Map json) => _$HomeRecommendListFromJson(json); Map toJson() => _$HomeRecommendListToJson(this); }