FondleTalk/lib/beans/mall_item_bean.dart
2024-09-02 14:11:51 +08:00

24 lines
641 B
Dart

import 'package:json_annotation/json_annotation.dart';
part 'mall_item_bean.g.dart';
///标签
@JsonSerializable(explicitToJson: true)
class MallItemBean {
int? propId;
String? productId;
String? productDesc;
String? productName;
int? propCount;
int? propType;
String? price;
int? priceType;
String? imgUrl;
MallItemBean(this.propId, this.productId, this.productDesc, this.productName, this.propCount, this.propType, this.price, this.priceType, this.imgUrl);
factory MallItemBean.fromJson(Map<String, dynamic> json) => _$MallItemBeanFromJson(json);
Map<String, dynamic> toJson() => _$MallItemBeanToJson(this);
}