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.
29 lines
667 B
29 lines
667 B
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'single_sales.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
class SingleSales { |
|
dynamic productId; |
|
int? saleNum = 0; |
|
String? productName = ''; |
|
dynamic productType; |
|
String? productGroupName = ''; |
|
String? sumPrice = ''; |
|
String? sellPrict = ''; |
|
String? productSkuName = ''; |
|
dynamic productSkuList; |
|
dynamic platterLsit; |
|
int? giveNum = 0; |
|
int? refundNum = 0; |
|
double? productCountPercent; |
|
double? productSellPricePercent; |
|
|
|
SingleSales(); |
|
|
|
factory SingleSales.fromJson(Map<String, dynamic> json) => _$SingleSalesFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => _$SingleSalesToJson(this); |
|
|
|
|
|
} |