Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
29657 tejbeer 1
package com.spice.profitmandi.dao.entity.catalog;
2
 
3
import javax.persistence.Column;
4
import javax.persistence.Entity;
5
import javax.persistence.Id;
6
import javax.persistence.Table;
7
 
8
@Entity
9
@Table(name = "catalog.samsung_sp_qty", schema = "catalog")
10
public class SamsungSpQty {
11
 
12
	@Id
13
	@Column(name = "fofo_id")
14
	private int fofoId;
15
 
16
	@Column(name = "quantity")
17
	private int quantity;
18
 
19
	public int getFofoId() {
20
		return fofoId;
21
	}
22
 
23
	public void setFofoId(int fofoId) {
24
		this.fofoId = fofoId;
25
	}
26
 
27
	public int getQuantity() {
28
		return quantity;
29
	}
30
 
31
	public void setQuantity(int quantity) {
32
		this.quantity = quantity;
33
	}
34
 
35
	@Override
36
	public String toString() {
37
		return "SamsungSpQty [fofoId=" + fofoId + ", quantity=" + quantity + "]";
38
	}
39
 
40
}