You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm-flutter-app/lib/models/worklist/GetRFCEmployeeList.dart

49 lines
1.3 KiB
Dart

3 years ago
class GetRFCEmployeeList {
String? aCTION;
String? eMPLOYEEDISPLAYNAME;
String? eMPLOYEEIMAGE;
int? fROMROWNUM;
int? nOOFROWS;
int? rOWNUM;
int? sEQ;
int? tOROWNUM;
String? uSERNAME;
GetRFCEmployeeList(
{this.aCTION,
this.eMPLOYEEDISPLAYNAME,
this.eMPLOYEEIMAGE,
this.fROMROWNUM,
this.nOOFROWS,
this.rOWNUM,
this.sEQ,
this.tOROWNUM,
this.uSERNAME});
GetRFCEmployeeList.fromJson(Map<String, dynamic> json) {
aCTION = json['ACTION'];
eMPLOYEEDISPLAYNAME = json['EMPLOYEE_DISPLAY_NAME'];
eMPLOYEEIMAGE = json['EMPLOYEE_IMAGE'];
fROMROWNUM = json['FROM_ROW_NUM'];
nOOFROWS = json['NO_OF_ROWS'];
rOWNUM = json['ROW_NUM'];
sEQ = json['SEQ'];
tOROWNUM = json['TO_ROW_NUM'];
uSERNAME = json['USER_NAME'];
}
Map<String, dynamic> toJson() {
Map<String, dynamic> data = new Map<String, dynamic>();
data['ACTION'] = this.aCTION;
data['EMPLOYEE_DISPLAY_NAME'] = this.eMPLOYEEDISPLAYNAME;
data['EMPLOYEE_IMAGE'] = this.eMPLOYEEIMAGE;
data['FROM_ROW_NUM'] = this.fROMROWNUM;
data['NO_OF_ROWS'] = this.nOOFROWS;
data['ROW_NUM'] = this.rOWNUM;
data['SEQ'] = this.sEQ;
data['TO_ROW_NUM'] = this.tOROWNUM;
data['USER_NAME'] = this.uSERNAME;
return data;
}
}