You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
563 B
35 lines
563 B
package dao;
|
|
|
|
/**
|
|
* AbstractProducts entity provides the base persistence definition of the
|
|
* Products entity. @author MyEclipse Persistence Tools
|
|
*/
|
|
|
|
public abstract class AbstractProducts implements java.io.Serializable {
|
|
|
|
// Fields
|
|
|
|
private ProductsId id;
|
|
|
|
// Constructors
|
|
|
|
/** default constructor */
|
|
public AbstractProducts() {
|
|
}
|
|
|
|
/** full constructor */
|
|
public AbstractProducts(ProductsId id) {
|
|
this.id = id;
|
|
}
|
|
|
|
// Property accessors
|
|
|
|
public ProductsId getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public void setId(ProductsId id) {
|
|
this.id = id;
|
|
}
|
|
|
|
} |