config updated

This commit is contained in:
2026-03-13 22:25:33 +05:30
parent a6de18155a
commit 728817a53e
1773 changed files with 313158 additions and 8 deletions

View File

@@ -30,6 +30,7 @@ class NEFTOutwardRecord:
benef_address: str # VARCHAR2(400)
msg_type: str # VARCHAR2(400)
bank_code: str
sender_to_reciver_info: str
def to_dict(self):
"""Convert to dictionary for DB insertion."""
@@ -50,6 +51,7 @@ class NEFTOutwardRecord:
"REJECT_REASON": self.reject_reason,
"BENEFICIARY_ADDRESS": self.benef_address,
"MSG_TYPE": self.msg_type,
"SENDER_TO_RECIVER_INFO": self.sender_to_reciver_info,
}