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.

28 lines
606 B

package dao;
/**
* ProductsId entity. @author MyEclipse Persistence Tools
*/
public class ProductsId extends AbstractProductsId implements
java.io.Serializable {
// Constructors
/** default constructor */
public ProductsId() {
}
/** minimal constructor */
public ProductsId(Integer proId, Integer userId) {
super(proId, userId);
}
/** full constructor */
public ProductsId(Integer proId, Integer userId, String proName,
String contact, Float price, Float oprice, Integer type,
Integer classifyId) {
super(proId, userId, proName, contact, price, oprice, type, classifyId);
}
}