ProductImages.java
package com.salesmanager.web.admin.entity.content;
public class ProductImages extends ContentFiles {
/**
*
*/
private static final long serialVersionUID = 7732719188032287938L;
private long productId;
public long getProductId() {
return productId;
}
public void setProductId(long productId) {
this.productId = productId;
}
}