Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.dtr;import java.time.LocalDateTime;import javax.persistence.Column;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;import javax.persistence.Table;@Entity@Table(name = "dtr.fundfina_pre_approval", schema = "dtr")public class FundFinaPreApproval {@Id@Column(name = "id", unique = true, updatable = false)@GeneratedValue(strategy = GenerationType.IDENTITY)private int id;@Column(name = "fofo_id")private int fofoId;@Column(name = "product_id")private String productId;@Column(name = "tenure_in_days")private int tenureInDays;@Column(name = "processing_fee")private String processingFee;@Column(name = "annual_interest_rate")private String annualInterestRate;@Column(name = "approved_amount")private String approvedAmount;@Column(name = "emi_amount")private String emiAmount;@Column(name = "expiry_date")private LocalDateTime expiryDate;@Column(name = "create_timestamp")private LocalDateTime createTimestamp;@Column(name = "update_timestamp")private LocalDateTime updateTimestamp;public LocalDateTime getCreateTimestamp() {return createTimestamp;}public void setCreateTimestamp(LocalDateTime createTimestamp) {this.createTimestamp = createTimestamp;}public LocalDateTime getUpdateTimestamp() {return updateTimestamp;}public void setUpdateTimestamp(LocalDateTime updateTimestamp) {this.updateTimestamp = updateTimestamp;}public int getId() {return id;}public void setId(int id) {this.id = id;}public int getFofoId() {return fofoId;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}public String getProductId() {return productId;}public void setProductId(String productId) {this.productId = productId;}public int getTenureInDays() {return tenureInDays;}public void setTenureInDays(int tenureInDays) {this.tenureInDays = tenureInDays;}public String getProcessingFee() {return processingFee;}public void setProcessingFee(String processingFee) {this.processingFee = processingFee;}public String getAnnualInterestRate() {return annualInterestRate;}public void setAnnualInterestRate(String annualInterestRate) {this.annualInterestRate = annualInterestRate;}public String getApprovedAmount() {return approvedAmount;}public void setApprovedAmount(String approvedAmount) {this.approvedAmount = approvedAmount;}public String getEmiAmount() {return emiAmount;}public void setEmiAmount(String emiAmount) {this.emiAmount = emiAmount;}public LocalDateTime getExpiryDate() {return expiryDate;}public void setExpiryDate(LocalDateTime expiryDate) {this.expiryDate = expiryDate;}@Overridepublic String toString() {return "FundFinaPreApproval [id=" + id + ", fofoId=" + fofoId + ", productId=" + productId + ", tenureInDays="+ tenureInDays + ", processingFee=" + processingFee + ", annualInterestRate=" + annualInterestRate+ ", approvedAmount=" + approvedAmount + ", emiAmount=" + emiAmount + ", expiryDate=" + expiryDate+ ", createTimestamp=" + createTimestamp + ", updateTimestamp=" + updateTimestamp + "]";}}