Rev 28205 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.fofo;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 = "fofo.partner_problem")public class PartnerProblem {public int getFofoId() {return fofoId;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}@Id@Column(name = "id")@GeneratedValue(strategy = GenerationType.IDENTITY)private int id;@Column(name = "fofo_id")private int fofoId;private int mtd;private int investment;@Column(name = "stock_investment")private int stockInvestment;public int getId() {return id;}public void setId(int id) {this.id = id;}public int getMtd() {return mtd;}public void setMtd(int mtd) {this.mtd = mtd;}public int getInvestment() {return investment;}public void setInvestment(int investment) {this.investment = investment;}public int getStockInvestment() {return stockInvestment;}public void setStockInvestment(int stockInvestment) {this.stockInvestment = stockInvestment;}}