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.
aku_new_community/lib/models/collection/collection_goods_model.g.dart

22 lines
802 B

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'collection_goods_model.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
CollectionGoodsModel _$CollectionGoodsModelFromJson(
Map<String, dynamic> json) =>
CollectionGoodsModel(
id: json['id'] as int,
goodsPushId: json['goodsPushId'] as int?,
skuName: json['skuName'] as String?,
mainPhoto: json['mainPhoto'] as String?,
status: json['status'] as int?,
shopStatus: json['shopStatus'] as int?,
sellPrice: (json['sellPrice'] as num?)?.toDouble(),
discountPrice: (json['discountPrice'] as num?)?.toDouble(),
kind: json['kind'] as int?,
);