Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
28205 tejbeer 1
package com.spice.profitmandi.dao.entity.fofo;
2
 
3
import javax.persistence.Column;
4
import javax.persistence.Entity;
5
import javax.persistence.GeneratedValue;
6
import javax.persistence.GenerationType;
7
import javax.persistence.Id;
8
import javax.persistence.Table;
9
 
10
@Entity
31860 tejbeer 11
@Table(name = "fofo.partner_problem")
28205 tejbeer 12
public class PartnerProblem {
13
	public int getFofoId() {
14
		return fofoId;
15
	}
16
 
17
	public void setFofoId(int fofoId) {
18
		this.fofoId = fofoId;
19
	}
20
 
21
	@Id
22
	@Column(name = "id")
23
	@GeneratedValue(strategy = GenerationType.IDENTITY)
24
	private int id;
25
 
26
	@Column(name = "fofo_id")
27
	private int fofoId;
28
 
29
	private int mtd;
30
	private int investment;
31
 
32
	@Column(name = "stock_investment")
33
	private int stockInvestment;
34
 
35
	public int getId() {
36
		return id;
37
	}
38
 
39
	public void setId(int id) {
40
		this.id = id;
41
	}
42
 
43
	public int getMtd() {
44
		return mtd;
45
	}
46
 
47
	public void setMtd(int mtd) {
48
		this.mtd = mtd;
49
	}
50
 
51
	public int getInvestment() {
52
		return investment;
53
	}
54
 
55
	public void setInvestment(int investment) {
56
		this.investment = investment;
57
	}
58
 
59
	public int getStockInvestment() {
60
		return stockInvestment;
61
	}
62
 
63
	public void setStockInvestment(int stockInvestment) {
64
		this.stockInvestment = stockInvestment;
65
	}
66
 
67
}