| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.example.cinema.vo;
- /**
- * Created by liying on 2019/4/16.
- */
- public class TicketSeatVO {
- /**
- * 排片id
- */
- private int scheduleId;
- /**
- * 列号
- */
- private int columnIndex;
- /**
- * 排号
- */
- private int rowIndex;
- public TicketSeatVO() {
- }
- public int getScheduleId() {
- return scheduleId;
- }
- public void setScheduleId(int scheduleId) {
- this.scheduleId = scheduleId;
- }
- 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;
- }
- }
|