Subversion Repositories SmartDukaan

Rev

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

Rev 21903 Rev 21917
Line 50... Line 50...
50
	
50
	
51
	@Enumerated(EnumType.STRING)
51
	@Enumerated(EnumType.STRING)
52
	@Column(name = "type")
52
	@Column(name = "type")
53
	private ItemType type;
53
	private ItemType type;
54
	
54
	
-
 
55
	@Column(name = "hsnCode")
55
	private String hsnCode;
56
	private String hsnCode;
56
	
57
	
57
	public int getId() {
58
	public int getId() {
58
		return id;
59
		return id;
59
	}
60
	}
Line 106... Line 107...
106
		this.catalogItemId = catalogItemId;
107
		this.catalogItemId = catalogItemId;
107
	}
108
	}
108
	@Override
109
	@Override
109
	public String toString() {
110
	public String toString() {
110
		return "Item [id=" + id + ", brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
111
		return "Item [id=" + id + ", brand=" + brand + ", modelName=" + modelName + ", modelNumber=" + modelNumber
111
				+ ", color=" + color + ", catalogItemId=" + catalogItemId + ", type=" + type + ", hsnCode=" + hsnCode
112
				+ ", color=" + color + ", type=" + type + ", hsnCode="+ hsnCode + ", catalogItemId=" + catalogItemId + "]";
112
				+ "]";
-
 
113
	}
113
	}
114
	
-
 
115
	
-
 
116
    
114
    
117
}
115
}
118
116