Subversion Repositories SmartDukaan

Rev

Rev 26820 | Rev 26824 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26820 Rev 26823
Line 1... Line 1...
1
package com.spice.profitmandi.dao.entity.catalog;
1
package com.spice.profitmandi.dao.entity.catalog;
2
 
2
 
3
import javax.persistence.Column;
3
import javax.persistence.Column;
4
import javax.persistence.Entity;
4
import javax.persistence.Entity;
-
 
5
import javax.persistence.Id;
5
import javax.persistence.Table;
6
import javax.persistence.Table;
6
 
7
 
7
@Entity
8
@Entity
8
@Table(name="catalog.stategstrate", schema = "catalog")
9
@Table(name="catalog.stategstrate", schema = "catalog")
9
public class StateGstRate {
10
public class StateGstRate {
-
 
11
	@Id
10
	@Column(name="item_id")
12
	@Column(name="item_id")
11
	private int itemId;
13
	private int itemId;
12
	
14
	
-
 
15
	@Id
13
	@Column(name="state_id")
16
	@Column(name="state_id")
14
	private int stateId;
17
	private int stateId;
15
	
18
	
16
	@Column(name="igst_rate")
19
	@Column(name="igst_rate")
17
	private double igstRate;
20
	private double igstRate;