Subversion Repositories SmartDukaan

Rev

Rev 31860 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31860 Rev 37120
Line 26... Line 26...
26
 
26
 
27
 
27
 
28
	@Column(name = "description")
28
	@Column(name = "description")
29
	private String description;
29
	private String description;
30
 
30
 
-
 
31
	/** LMS short code (UPW/UPE/RJ/PB/HR/UK/DL) — used for the LMS id prefix + display. */
-
 
32
	@Column(name = "region_code")
-
 
33
	private String regionCode;
-
 
34
 
-
 
35
	public String getRegionCode() {
-
 
36
		return regionCode;
-
 
37
	}
-
 
38
 
-
 
39
	public void setRegionCode(String regionCode) {
-
 
40
		this.regionCode = regionCode;
-
 
41
	}
-
 
42
 
31
	@Override
43
	@Override
32
	public String toString() {
44
	public String toString() {
33
		return "Region [id=" + id + ", name=" + name + ", description=" + description + "]";
45
		return "Region [id=" + id + ", name=" + name + ", description=" + description + "]";
34
	}
46
	}
35
 
47