标签:
1 package com.zero.lab1.main; 2 3 public class Seat { 4 5 private Integer seatNum; 6 7 private Boolean avaliable; 8 9 public Seat(Integer seatNum, Boolean avaliable) { 10 super(); 11 this.seatNum = seatNum; 12 this.avaliable = avaliable; 13 } 14 15 public Seat() { 16 super(); 17 } 18 19 public Integer getSeatNum() { 20 return seatNum; 21 } 22 23 public void setSeatNum(Integer seatNum) { 24 this.seatNum = seatNum; 25 } 26 27 public Boolean getAvaliable() { 28 return avaliable; 29 } 30 31 public void setAvaliable(Boolean avaliable) { 32 this.avaliable = avaliable; 33 } 34 35 @Override 36 public String toString() { 37 return "Seat [seatNum=" + seatNum + ", avaliable=" + avaliable + "]"; 38 } 39 40 }
标签:
原文地址:http://www.cnblogs.com/ThomasNEU/p/4217252.html