TicketSeatVO.java 791 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.example.cinema.vo;
  2. /**
  3. * Created by liying on 2019/4/16.
  4. */
  5. public class TicketSeatVO {
  6. /**
  7. * 排片id
  8. */
  9. private int scheduleId;
  10. /**
  11. * 列号
  12. */
  13. private int columnIndex;
  14. /**
  15. * 排号
  16. */
  17. private int rowIndex;
  18. public TicketSeatVO() {
  19. }
  20. public int getScheduleId() {
  21. return scheduleId;
  22. }
  23. public void setScheduleId(int scheduleId) {
  24. this.scheduleId = scheduleId;
  25. }
  26. public int getColumnIndex() {
  27. return columnIndex;
  28. }
  29. public void setColumnIndex(int columnIndex) {
  30. this.columnIndex = columnIndex;
  31. }
  32. public int getRowIndex() {
  33. return rowIndex;
  34. }
  35. public void setRowIndex(int rowIndex) {
  36. this.rowIndex = rowIndex;
  37. }
  38. }