Subversion Repositories SmartDukaan

Rev

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

Rev 28653 Rev 28656
Line 57... Line 57...
57
	@Column(name="catalog_item_id")
57
	@Column(name="catalog_item_id")
58
	private int catalogItemId;
58
	private int catalogItemId;
59
	
59
	
60
	
60
	
61
	@Column(name="weight")
61
	@Column(name="weight")
62
	private double weight;
62
	private Double weight;
63
	
63
	
64
	@Column(name="category")
64
	@Column(name="category")
65
	private int categoryId;
65
	private int categoryId;
66
	
66
	
67
	public int getCategoryId() {
67
	public int getCategoryId() {
Line 140... Line 140...
140
	
140
	
141
	public int getCatalogItemId() {
141
	public int getCatalogItemId() {
142
		return catalogItemId;
142
		return catalogItemId;
143
	}
143
	}
144
	
144
	
145
	public double getWeight() {
145
	public Double getWeight() {
146
		return weight;
146
		return weight;
147
	}
147
	}
148
	public void setWeight(double weight) {
148
	public void setWeight(Double weight) {
149
		this.weight = weight;
149
		this.weight = weight;
150
	}
150
	}
151
	public void setCatalogItemId(int catalogItemId) {
151
	public void setCatalogItemId(int catalogItemId) {
152
		this.catalogItemId = catalogItemId;
152
		this.catalogItemId = catalogItemId;
153
	}
153
	}