Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package order;
- // Generated Oct 31, 2016 3:43:36 AM by Hibernate Tools 4.3.1
- /**
- * Lists generated by hbm2java
- */
- public class Lists implements java.io.Serializable {
- private int id;
- private int idtype;
- private String type;
- private int price;
- public Lists() {
- }
- public Lists(int id, int idtype, String type, int price) {
- this.id = id;
- this.idtype = idtype;
- this.type = type;
- this.price = price;
- }
- public int getId() {
- return this.id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public int getIdtype() {
- return this.idtype;
- }
- public void setIdtype(int idtype) {
- this.idtype = idtype;
- }
- public String getType() {
- return this.type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public int getPrice() {
- return this.price;
- }
- public void setPrice(int price) {
- this.price = price;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment