SeatForm.java 530 B

12345678910111213141516171819202122232425262728293031
  1. package com.example.cinema.vo;
  2. /**
  3. * Created by liying on 2019/4/18.
  4. */
  5. public class SeatForm {
  6. /**
  7. * 列号
  8. */
  9. private int columnIndex;
  10. /**
  11. * 排号
  12. */
  13. private int rowIndex;
  14. public int getColumnIndex() {
  15. return columnIndex;
  16. }
  17. public void setColumnIndex(int columnIndex) {
  18. this.columnIndex = columnIndex;
  19. }
  20. public int getRowIndex() {
  21. return rowIndex;
  22. }
  23. public void setRowIndex(int rowIndex) {
  24. this.rowIndex = rowIndex;
  25. }
  26. }