Subversion Repositories SmartDukaan

Rev

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

Rev 22009 Rev 22479
Line 22... Line 22...
22
 
22
 
23
	@Column(name="user_id")
23
	@Column(name="user_id")
24
	private int userId;
24
	private int userId;
25
	
25
	
26
	@Column(name="store_product_id")
26
	@Column(name="store_product_id")
27
	private int storeProductId;
27
	private String storeProductId;
28
	
28
	
29
	private String tag;
29
	private String tag;
30
	
30
	
31
	private String url;
31
	private String url;
32
	
32
	
Line 123... Line 123...
123
	
123
	
124
	public void setCreated(LocalDateTime created) {
124
	public void setCreated(LocalDateTime created) {
125
		this.created = created;
125
		this.created = created;
126
	}
126
	}
127
 
127
 
128
	public int getStoreProdcutId() {
128
	public String getStoreProdcutId() {
129
		return storeProductId;
129
		return storeProductId;
130
	}
130
	}
131
 
131
 
132
	public void setStoreProductId(int storeProductId) {
132
	public void setStoreProductId(String storeProductId) {
133
		this.storeProductId = storeProductId;
133
		this.storeProductId = storeProductId;
134
	}
134
	}
135
 
135
 
136
	@Override
136
	@Override
137
	public String toString() {
137
	public String toString() {