Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35631 ranu 1
package com.spice.profitmandi.dao.entity.auth;
2
 
3
import javax.persistence.*;
4
import java.time.LocalDateTime;
5
 
6
@Entity
7
@Table(name = "auth.rbm_call_sequence_log", schema = "auth")
8
public class RbmCallSequenceLog {
9
 
10
	@Id
11
	@Column
12
	@GeneratedValue(strategy = GenerationType.IDENTITY)
13
	private int id;
14
 
15
	@Column(name = "auth_id")
16
	private int authId;
17
 
18
	@Column(name = "fofo_id")
19
	private int fofoId;
20
 
21
	@Column(name = "out_of_sequence")
22
	private boolean outOfSequence;
23
 
24
	@Column(name = "mobile")
25
	private String mobile;
26
 
27
	@Column(name = "create_timestamp")
28
	private LocalDateTime createTimestamp;
29
 
30
	public int getId() {
31
		return id;
32
	}
33
 
34
	public void setId(int id) {
35
		this.id = id;
36
	}
37
 
38
	public int getAuthId() {
39
		return authId;
40
	}
41
 
42
	public void setAuthId(int authId) {
43
		this.authId = authId;
44
	}
45
 
46
	public int getFofoId() {
47
		return fofoId;
48
	}
49
 
50
	public void setFofoId(int fofoId) {
51
		this.fofoId = fofoId;
52
	}
53
 
54
	public boolean isOutOfSequence() {
55
		return outOfSequence;
56
	}
57
 
58
	public void setOutOfSequence(boolean outOfSequence) {
59
		this.outOfSequence = outOfSequence;
60
	}
61
 
62
	public String getMobile() {
63
		return mobile;
64
	}
65
 
66
	public void setMobile(String mobile) {
67
		this.mobile = mobile;
68
	}
69
 
70
	public LocalDateTime getCreateTimestamp() {
71
		return createTimestamp;
72
	}
73
 
74
	public void setCreateTimestamp(LocalDateTime createTimestamp) {
75
		this.createTimestamp = createTimestamp;
76
	}
77
 
78
	@Override
79
	public String toString() {
80
		return "RbmCallSequenceLog [id=" + id + ", authId=" + authId + ", fofoId=" + fofoId + ", outOfSequence="
81
				+ outOfSequence + ", mobile=" + mobile + ", createTimestamp=" + createTimestamp + "]";
82
	}
83
}