1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import 'package:domain/generated/json/base/json_field.dart';
- import 'package:domain/generated/json/labour_report_entity.g.dart';
- import 'dart:convert';
- export 'package:domain/generated/json/labour_report_entity.g.dart';
- @JsonSerializable()
- class LabourReportEntity {
- List<LabourReportRows> rows = [];
- LabourReportTotal? total;
- LabourReportEntity();
- factory LabourReportEntity.fromJson(Map<String, dynamic> json) => $LabourReportEntityFromJson(json);
- Map<String, dynamic> toJson() => $LabourReportEntityToJson(this);
- @override
- String toString() {
- return jsonEncode(this);
- }
- }
- @JsonSerializable()
- class LabourReportRows {
- @JSONField(name: "outlet_id")
- int? outletId = 0;
- @JSONField(name: "outlet_name")
- String? outletName = null;
- String? hrs = null;
- @JSONField(name: "ag_amt")
- String? agAmt = null;
- @JSONField(name: "in_hrs")
- String? inHrs = null;
- @JSONField(name: "in_ag_amt")
- String? inAgAmt = null;
- @JSONField(name: "tot_hrs")
- String? totHrs = null;
- @JSONField(name: "tot_ag_amt")
- String? totAgAmt = null;
- LabourReportRows();
- factory LabourReportRows.fromJson(Map<String, dynamic> json) => $LabourReportRowsFromJson(json);
- Map<String, dynamic> toJson() => $LabourReportRowsToJson(this);
- @override
- String toString() {
- return jsonEncode(this);
- }
- }
- @JsonSerializable()
- class LabourReportTotal {
- String? hrs = null;
- @JSONField(name: "ag_amt")
- String? agAmt = null;
- @JSONField(name: "in_hrs")
- String? inHrs = null;
- @JSONField(name: "in_ag_amt")
- String? inAgAmt = null;
- @JSONField(name: "tot_hrs")
- String? totHrs = null;
- @JSONField(name: "tot_ag_amt")
- String? totAgAmt = null;
- LabourReportTotal();
- factory LabourReportTotal.fromJson(Map<String, dynamic> json) => $LabourReportTotalFromJson(json);
- Map<String, dynamic> toJson() => $LabourReportTotalToJson(this);
- @override
- String toString() {
- return jsonEncode(this);
- }
- }
|