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.
33 lines
756 B
33 lines
756 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'dat_count.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class DatCount {
|
||
|
String? summaryDate = '';
|
||
|
String? dayMoney = '';
|
||
|
String? discountSum = '';
|
||
|
String? paySum = '';
|
||
|
String? rechargeMoney = '';
|
||
|
String? refundMoney = '';
|
||
|
int? orderNum = 0;
|
||
|
int? rechargeOrderNum = 0;
|
||
|
int? refundOrderNum = 0;
|
||
|
int? payOrderNum = 0;
|
||
|
int? discountOrderNum = 0;
|
||
|
dynamic startDate;
|
||
|
dynamic endDate;
|
||
|
dynamic tablePerConsumption;
|
||
|
int? numberOfPeople = 0;
|
||
|
String? peoplePerConsumption = '';
|
||
|
dynamic realDiscountPer;
|
||
|
dynamic tableRate;
|
||
|
|
||
|
DatCount();
|
||
|
|
||
|
factory DatCount.fromJson(Map<String, dynamic> json) => _$DatCountFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$DatCountToJson(this);
|
||
|
|
||
|
|
||
|
}
|