Subversion Repositories SmartDukaan

Rev

Rev 26846 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
26846 tejbeer 1
package com.spice.profitmandi.dao.entity.fofo;
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
31860 tejbeer 13
@Table(name = "fofo.suggested_po")
26846 tejbeer 14
public class SuggestedPo {
15
 
16
	@Id
17
	@Column(name = "id", unique = true, updatable = false)
18
	@GeneratedValue(strategy = GenerationType.IDENTITY)
19
	private int id;
20
 
21
	@Column(name = "fofo_id")
22
	private int fofoId;
23
 
24
	@Column(name = "status")
25
	private String status;
26
 
27
	@Column(name = "authId")
28
	private String authId;
29
 
30
	public String getAuthId() {
31
		return authId;
32
	}
33
 
34
	public void setAuthId(String authId) {
35
		this.authId = authId;
36
	}
37
 
38
	@Column(name = "create_timestamp")
39
	private LocalDateTime createTimestamp;
40
 
41
	public int getId() {
42
		return id;
43
	}
44
 
45
	public void setId(int id) {
46
		this.id = id;
47
	}
48
 
49
	public int getFofoId() {
50
		return fofoId;
51
	}
52
 
53
	public void setFofoId(int fofoId) {
54
		this.fofoId = fofoId;
55
	}
56
 
57
	public String getStatus() {
58
		return status;
59
	}
60
 
61
	public void setStatus(String status) {
62
		this.status = status;
63
	}
64
 
65
	public LocalDateTime getCreateTimestamp() {
66
		return createTimestamp;
67
	}
68
 
69
	public void setCreateTimestamp(LocalDateTime createTimestamp) {
70
		this.createTimestamp = createTimestamp;
71
	}
72
 
73
	@Override
74
	public String toString() {
75
		return "MonthlyPo [id=" + id + ", fofoId=" + fofoId + ", status=" + status + ", authId=" + authId
76
				+ ", createTimestamp=" + createTimestamp + "]";
77
	}
78
 
79
}