| 12345678910111213141516171819202122232425262728293031 |
- package com.example.cinema.vo;
- /**
- * Created by liying on 2019/4/18.
- */
- public class SeatForm {
- /**
- * 列号
- */
- private int columnIndex;
- /**
- * 排号
- */
- private int rowIndex;
- public int getColumnIndex() {
- return columnIndex;
- }
- public void setColumnIndex(int columnIndex) {
- this.columnIndex = columnIndex;
- }
- public int getRowIndex() {
- return rowIndex;
- }
- public void setRowIndex(int rowIndex) {
- this.rowIndex = rowIndex;
- }
- }
|