Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30219 tejbeer 1
package com.spice.profitmandi.dao.entity.dtr;
2
 
3
import java.time.LocalDateTime;
4
 
5
import javax.persistence.Column;
6
import javax.persistence.Entity;
7
import javax.persistence.GeneratedValue;
8
import javax.persistence.GenerationType;
9
import javax.persistence.Id;
10
import javax.persistence.Table;
11
 
12
@Entity
13
@Table(name = "dtr.fundfina_pre_approval", schema = "dtr")
14
public class FundFinaPreApproval {
15
	@Id
16
	@Column(name = "id", unique = true, updatable = false)
17
	@GeneratedValue(strategy = GenerationType.IDENTITY)
18
	private int id;
19
 
20
	@Column(name = "fofo_id")
21
	private int fofoId;
22
 
23
	@Column(name = "product_id")
24
	private String productId;
25
 
26
	@Column(name = "tenure_in_days")
27
	private int tenureInDays;
28
 
29
	@Column(name = "processing_fee")
30
	private String processingFee;
31
 
32
	@Column(name = "annual_interest_rate")
33
	private String annualInterestRate;
34
 
35
	@Column(name = "approved_amount")
36
	private String approvedAmount;
37
 
38
	@Column(name = "emi_amount")
39
	private String emiAmount;
40
 
41
	@Column(name = "expiry_date")
42
	private LocalDateTime expiryDate;
43
 
44
	@Column(name = "create_timestamp")
45
	private LocalDateTime createTimestamp;
46
 
47
	@Column(name = "update_timestamp")
48
	private LocalDateTime updateTimestamp;
49
 
50
	public LocalDateTime getCreateTimestamp() {
51
		return createTimestamp;
52
	}
53
 
54
	public void setCreateTimestamp(LocalDateTime createTimestamp) {
55
		this.createTimestamp = createTimestamp;
56
	}
57
 
58
	public LocalDateTime getUpdateTimestamp() {
59
		return updateTimestamp;
60
	}
61
 
62
	public void setUpdateTimestamp(LocalDateTime updateTimestamp) {
63
		this.updateTimestamp = updateTimestamp;
64
	}
65
 
66
	public int getId() {
67
		return id;
68
	}
69
 
70
	public void setId(int id) {
71
		this.id = id;
72
	}
73
 
74
	public int getFofoId() {
75
		return fofoId;
76
	}
77
 
78
	public void setFofoId(int fofoId) {
79
		this.fofoId = fofoId;
80
	}
81
 
82
	public String getProductId() {
83
		return productId;
84
	}
85
 
86
	public void setProductId(String productId) {
87
		this.productId = productId;
88
	}
89
 
90
	public int getTenureInDays() {
91
		return tenureInDays;
92
	}
93
 
94
	public void setTenureInDays(int tenureInDays) {
95
		this.tenureInDays = tenureInDays;
96
	}
97
 
98
	public String getProcessingFee() {
99
		return processingFee;
100
	}
101
 
102
	public void setProcessingFee(String processingFee) {
103
		this.processingFee = processingFee;
104
	}
105
 
106
	public String getAnnualInterestRate() {
107
		return annualInterestRate;
108
	}
109
 
110
	public void setAnnualInterestRate(String annualInterestRate) {
111
		this.annualInterestRate = annualInterestRate;
112
	}
113
 
114
	public String getApprovedAmount() {
115
		return approvedAmount;
116
	}
117
 
118
	public void setApprovedAmount(String approvedAmount) {
119
		this.approvedAmount = approvedAmount;
120
	}
121
 
122
	public String getEmiAmount() {
123
		return emiAmount;
124
	}
125
 
126
	public void setEmiAmount(String emiAmount) {
127
		this.emiAmount = emiAmount;
128
	}
129
 
130
	public LocalDateTime getExpiryDate() {
131
		return expiryDate;
132
	}
133
 
134
	public void setExpiryDate(LocalDateTime expiryDate) {
135
		this.expiryDate = expiryDate;
136
	}
137
 
138
	@Override
139
	public String toString() {
140
		return "FundFinaPreApproval [id=" + id + ", fofoId=" + fofoId + ", productId=" + productId + ", tenureInDays="
141
				+ tenureInDays + ", processingFee=" + processingFee + ", annualInterestRate=" + annualInterestRate
142
				+ ", approvedAmount=" + approvedAmount + ", emiAmount=" + emiAmount + ", expiryDate=" + expiryDate
143
				+ ", createTimestamp=" + createTimestamp + ", updateTimestamp=" + updateTimestamp + "]";
144
	}
145
 
146
}