EMILoanModel.swift 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //
  2. // EMILoanModel.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 02/12/21.
  6. //
  7. import Foundation
  8. // MARK: - EMILoanOriginalModel
  9. class EMILoanOriginalModel {
  10. var loanCategoryLabel, loanDiscription, loanProvider, loanTypeLabel, loanStartDate, loanEndDate, loan_original_flag, displayDate : String?
  11. var loanCategory, loanType, loanTenure, numberOfEMI, interestPaymentFrequency : Int?
  12. var loanAmount, interestRate, emiAmount, totalInterestPaid : Double?
  13. init(loanCategoryLabel:String, loanDiscription:String, loanProvider:String, loanTypeLabel:String, loanStartDate:String, loanEndDate:String, loan_original_flag:String, displayDate:String, loanCategory:Int, loanType:Int, loanTenure:Int, numberOfEMI:Int, interestPaymentFrequency:Int, loanAmount:Double, interestRate:Double, emiAmount:Double, totalInterestPaid:Double) {
  14. self.loanCategoryLabel = loanCategoryLabel
  15. self.loanDiscription = loanDiscription
  16. self.loanProvider = loanProvider
  17. self.loanTypeLabel = loanTypeLabel
  18. self.loanStartDate = loanStartDate
  19. self.loanEndDate = loanEndDate
  20. self.loan_original_flag = loan_original_flag
  21. self.displayDate = displayDate
  22. self.loanCategory = loanCategory
  23. self.loanType = loanType
  24. self.loanTenure = loanTenure
  25. self.numberOfEMI = numberOfEMI
  26. self.interestPaymentFrequency = interestPaymentFrequency
  27. self.loanAmount = loanAmount
  28. self.interestRate = interestRate
  29. self.emiAmount = emiAmount
  30. self.totalInterestPaid = totalInterestPaid
  31. }
  32. }
  33. class EMIOriginalLookupList {
  34. let serialNumber, installmentNumber, loanEndDays : Int?
  35. let refDate, financialYear, referenceMonth, displayDate : String?
  36. let begningBal, interestPayment, principalPayment, endingBalance, emiAmount, totalPrincipalPaid, totalInterestPaid : Double?
  37. init(serialNumber:Int, installmentNumber:Int, loanEndDays:Int, refDate:String, financialYear:String, referenceMonth:String, displayDate:String, begningBal:Double, interestPayment:Double, principalPayment:Double, endingBalance:Double, emiAmount:Double, totalPrincipalPaid:Double, totalInterestPaid:Double) {
  38. self.serialNumber = serialNumber
  39. self.installmentNumber = installmentNumber
  40. self.loanEndDays = loanEndDays
  41. self.refDate = refDate
  42. self.financialYear = financialYear
  43. self.referenceMonth = referenceMonth
  44. self.displayDate = displayDate
  45. self.begningBal = begningBal
  46. self.interestPayment = interestPayment
  47. self.principalPayment = principalPayment
  48. self.endingBalance = endingBalance
  49. self.emiAmount = emiAmount
  50. self.totalPrincipalPaid = totalPrincipalPaid
  51. self.totalInterestPaid = totalInterestPaid
  52. }
  53. }
  54. // MARK: - EMILoanOutstandingModel
  55. class EMILoanOutstandingModel {
  56. var loanCategoryLabel, loanDiscription, loanProvider, loanTypeLabel, loanStartDate, loanEndDate, loan_original_flag, displayDate : String?
  57. var loanCategory, loanType, loanTenure, numberOfEMI, interestPaymentFrequency : Int?
  58. var loanAmount, interestRate, emiAmount, totalInterestPaid : Double?
  59. init(loanCategoryLabel:String, loanDiscription:String, loanProvider:String, loanTypeLabel:String, loanStartDate:String, loanEndDate:String, loan_original_flag:String, displayDate:String, loanCategory:Int, loanType:Int, loanTenure:Int, numberOfEMI:Int, interestPaymentFrequency:Int, loanAmount:Double, interestRate:Double, emiAmount:Double, totalInterestPaid:Double) {
  60. self.loanCategoryLabel = loanCategoryLabel
  61. self.loanDiscription = loanDiscription
  62. self.loanProvider = loanProvider
  63. self.loanTypeLabel = loanTypeLabel
  64. self.loanStartDate = loanStartDate
  65. self.loanEndDate = loanEndDate
  66. self.loan_original_flag = loan_original_flag
  67. self.displayDate = displayDate
  68. self.loanCategory = loanCategory
  69. self.loanType = loanType
  70. self.loanTenure = loanTenure
  71. self.numberOfEMI = numberOfEMI
  72. self.interestPaymentFrequency = interestPaymentFrequency
  73. self.loanAmount = loanAmount
  74. self.interestRate = interestRate
  75. self.emiAmount = emiAmount
  76. self.totalInterestPaid = totalInterestPaid
  77. }
  78. }
  79. class EMIOutstandingLookupList {
  80. let serialNumber, installmentNumber, loanEndDays : Int?
  81. let refDate, financialYear, referenceMonth, displayDate : String?
  82. let begningBal, interestPayment, principalPayment, endingBalance, emiAmount, totalPrincipalPaid, totalInterestPaid : Double?
  83. init(serialNumber:Int, installmentNumber:Int, loanEndDays:Int, refDate:String, financialYear:String, referenceMonth:String, displayDate:String, begningBal:Double, interestPayment:Double, principalPayment:Double, endingBalance:Double, emiAmount:Double, totalPrincipalPaid:Double, totalInterestPaid:Double) {
  84. self.serialNumber = serialNumber
  85. self.installmentNumber = installmentNumber
  86. self.loanEndDays = loanEndDays
  87. self.refDate = refDate
  88. self.financialYear = financialYear
  89. self.referenceMonth = referenceMonth
  90. self.displayDate = displayDate
  91. self.begningBal = begningBal
  92. self.interestPayment = interestPayment
  93. self.principalPayment = principalPayment
  94. self.endingBalance = endingBalance
  95. self.emiAmount = emiAmount
  96. self.totalPrincipalPaid = totalPrincipalPaid
  97. self.totalInterestPaid = totalInterestPaid
  98. }
  99. }