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.

42 lines
1.0 KiB

3 years ago
import 'package:aku_new_community/model/common/img_model.dart';
import 'package:equatable/equatable.dart';
import 'package:json_annotation/json_annotation.dart';
part 'goods_item.g.dart';
@JsonSerializable()
class GoodsItem extends Equatable {
final int id;
final String title;
final String recommend;
final num sellingPrice;
final num markingPrice;
final int subscribeNum;
final List<ImgModel> imgList;
3 years ago
GoodsItem({
required this.id,
required this.title,
required this.recommend,
required this.sellingPrice,
required this.markingPrice,
required this.subscribeNum,
required this.imgList,
});
factory GoodsItem.example() => GoodsItem(
id: 0,
title: '华为mate30',
recommend: '九成新,无磨损',
sellingPrice: 1000,
markingPrice: 2000,
subscribeNum: 0,
imgList: []);
3 years ago
@override
List<Object?> get props => throw UnimplementedError();
factory GoodsItem.fromJson(Map<String, dynamic> json) =>
_$GoodsItemFromJson(json);
}