Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
PFM-4082
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuldevgarg committed Jan 10, 2024
1 parent 0009d4e commit aead5ad
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class ExpenseBillReportData {
int? paidDate;
String? filestoreid;
int? lastModifiedTime;
dynamic? lastModifiedByUuid;
dynamic? lastModifiedBy;
String? lastModifiedByUuid;
String? lastModifiedBy;
String? tenantId;

ExpenseBillReportData(
Expand Down Expand Up @@ -40,7 +40,7 @@ class ExpenseBillReportData {
filestoreid = json['filestoreid'];
lastModifiedTime = json['lastModifiedTime'];
lastModifiedByUuid = json['lastModifiedByUuid'];
lastModifiedBy = json['lastModifiedBy'];
lastModifiedBy = json['lastModifiedBy']??'-';
tenantId = json['tenantId'];
}

Expand Down

0 comments on commit aead5ad

Please sign in to comment.