Subversion Repositories SmartDukaan

Rev

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

Rev 24349 Rev 28493
Line 10... Line 10...
10
public class State {
10
public class State {
11
	@Id
11
	@Id
12
	@Column
12
	@Column
13
	private int id;
13
	private int id;
14
 
14
 
-
 
15
 
15
	@Column
16
	@Column(name="name")
16
	private String name;
17
	private String name;
17
	
18
	
18
	@Column(name="stateCode")
19
	@Column(name="stateCode")
19
	private String code;
20
	private String code;
20
	
21