|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
class GetAllSharedRecordsByStatusReq {
|
|
|
|
|
double versionID;
|
|
|
|
|
int channel;
|
|
|
|
|
int languageID;
|
|
|
|
|
// int languageID;
|
|
|
|
|
String iPAdress;
|
|
|
|
|
String generalid;
|
|
|
|
|
int patientOutSA;
|
|
|
|
|
@ -17,7 +17,7 @@ class GetAllSharedRecordsByStatusReq {
|
|
|
|
|
GetAllSharedRecordsByStatusReq(
|
|
|
|
|
{this.versionID,
|
|
|
|
|
this.channel,
|
|
|
|
|
this.languageID,
|
|
|
|
|
// this.languageID,
|
|
|
|
|
this.iPAdress,
|
|
|
|
|
this.generalid,
|
|
|
|
|
this.patientOutSA,
|
|
|
|
|
@ -33,7 +33,7 @@ class GetAllSharedRecordsByStatusReq {
|
|
|
|
|
GetAllSharedRecordsByStatusReq.fromJson(Map<String, dynamic> json) {
|
|
|
|
|
versionID = json['VersionID'];
|
|
|
|
|
channel = json['Channel'];
|
|
|
|
|
languageID = json['LanguageID'];
|
|
|
|
|
// languageID = json['LanguageID'];
|
|
|
|
|
iPAdress = json['IPAdress'];
|
|
|
|
|
generalid = json['generalid'];
|
|
|
|
|
patientOutSA = json['PatientOutSA'];
|
|
|
|
|
@ -51,7 +51,7 @@ class GetAllSharedRecordsByStatusReq {
|
|
|
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
|
|
|
data['VersionID'] = this.versionID;
|
|
|
|
|
data['Channel'] = this.channel;
|
|
|
|
|
data['LanguageID'] = this.languageID;
|
|
|
|
|
// data['LanguageID'] = this.languageID;
|
|
|
|
|
data['IPAdress'] = this.iPAdress;
|
|
|
|
|
data['generalid'] = this.generalid;
|
|
|
|
|
data['PatientOutSA'] = this.patientOutSA;
|
|
|
|
|
|