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.
37 lines
918 B
37 lines
918 B
10 months ago
|
import 'package:huixiang/generated/json/base/json_field.dart';
|
||
|
import 'package:huixiang/generated/json/dat_count.g.dart';
|
||
|
import 'dart:convert';
|
||
|
export 'package:huixiang/generated/json/dat_count.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
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);
|
||
|
|
||
|
@override
|
||
|
String toString() {
|
||
|
return jsonEncode(this);
|
||
|
}
|
||
|
}
|