missing swipe added.
parent
1e9a26e3df
commit
3e6fdd2cb5
@ -0,0 +1,18 @@
|
||||
class AddAttSuccessList {
|
||||
bool? addSuccess;
|
||||
int? attachmentID;
|
||||
|
||||
AddAttSuccessList({this.addSuccess, this.attachmentID});
|
||||
|
||||
AddAttSuccessList.fromJson(Map<String, dynamic> json) {
|
||||
addSuccess = json['AddSuccess'];
|
||||
attachmentID = json['AttachmentID'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['AddSuccess'] = this.addSuccess;
|
||||
data['AttachmentID'] = this.attachmentID;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
class AddAttachmentList {
|
||||
String? pRETURNMSG;
|
||||
String? pRETURNSTATUS;
|
||||
|
||||
AddAttachmentList({this.pRETURNMSG, this.pRETURNSTATUS});
|
||||
|
||||
AddAttachmentList.fromJson(Map<String, dynamic> json) {
|
||||
pRETURNMSG = json['P_RETURN_MSG'];
|
||||
pRETURNSTATUS = json['P_RETURN_STATUS'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['P_RETURN_MSG'] = this.pRETURNMSG;
|
||||
data['P_RETURN_STATUS'] = this.pRETURNSTATUS;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,27 @@
|
||||
class AttachmentModel {
|
||||
int? attachmentID;
|
||||
String? pFILECONTENTTYPE;
|
||||
String? pFILEDATA;
|
||||
String? pFILENAME;
|
||||
int? pTRANSACTIONID;
|
||||
|
||||
AttachmentModel({this.attachmentID, this.pFILECONTENTTYPE, this.pFILEDATA, this.pFILENAME, this.pTRANSACTIONID});
|
||||
|
||||
AttachmentModel.fromJson(Map<String, dynamic> json) {
|
||||
attachmentID = json['AttachmentID'];
|
||||
pFILECONTENTTYPE = json['P_FILE_CONTENT_TYPE'];
|
||||
pFILEDATA = json['P_FILE_DATA'];
|
||||
pFILENAME = json['P_FILE_NAME'];
|
||||
pTRANSACTIONID = json['P_TRANSACTION_ID'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['AttachmentID'] = this.attachmentID;
|
||||
data['P_FILE_CONTENT_TYPE'] = this.pFILECONTENTTYPE;
|
||||
data['P_FILE_DATA'] = this.pFILEDATA;
|
||||
data['P_FILE_NAME'] = this.pFILENAME;
|
||||
data['P_TRANSACTION_ID'] = this.pTRANSACTIONID;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
class StartEitApprovalProcess {
|
||||
String? pRETURNMSG;
|
||||
String? pRETURNSTATUS;
|
||||
|
||||
StartEitApprovalProcess({this.pRETURNMSG, this.pRETURNSTATUS});
|
||||
|
||||
StartEitApprovalProcess.fromJson(Map<String, dynamic> json) {
|
||||
pRETURNMSG = json['P_RETURN_MSG'];
|
||||
pRETURNSTATUS = json['P_RETURN_STATUS'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['P_RETURN_MSG'] = this.pRETURNMSG;
|
||||
data['P_RETURN_STATUS'] = this.pRETURNSTATUS;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue