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.
51 lines
1.2 KiB
51 lines
1.2 KiB
1 month ago
|
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<String>? imgs = [];
|
||
|
List<ProductSkuList>? productSkuList = [];
|
||
|
|
||
|
HomeRecommendList();
|
||
|
|
||
|
factory HomeRecommendList.fromJson(Map<String, dynamic> json) => _$HomeRecommendListFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$HomeRecommendListToJson(this);
|
||
|
|
||
|
|
||
|
}
|
||
|
|