Web implementation of the Gourmet Recipe Manager
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.
 
 
 
 

54 lines
995 B

package com.mousetech.gourmetj.persistence.model;
import java.io.Serializable;
import jakarta.persistence.*;
/**
* The persistent class for the "shopcatsorder" database table.
*
*/
@Entity
@Table(name="\"shopcatsorder\"")
@NamedQuery(name="Shopcatsorder.findAll", query="SELECT s FROM Shopcatsorder s")
public class Shopcatsorder implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Column(name="\"id\"")
private int id;
@Column(name="\"position\"")
private int position;
@Column(name="\"shopcategory\"")
private Integer shopcategory;
public Shopcatsorder() {
}
public int getId() {
return this.id;
}
public void setId(int id) {
this.id = id;
}
public int getPosition() {
return this.position;
}
public void setPosition(int position) {
this.position = position;
}
public Integer getShopcategory() {
return this.shopcategory;
}
public void setShopcategory(Integer shopcategory) {
this.shopcategory = shopcategory;
}
}