1234567891011121314151617181920212223 |
- package index.entity;
- public class Index {
- public Integer xIndex;
- public Integer yIndex;
- public Integer getxIndex() {
- return xIndex;
- }
- public void setxIndex(Integer xIndex) {
- this.xIndex = xIndex;
- }
- public Integer getyIndex() {
- return yIndex;
- }
- public void setyIndex(Integer yIndex) {
- this.yIndex = yIndex;
- }
- }
|