Index.java 389 B

1234567891011121314151617181920212223
  1. package index.entity;
  2. public class Index {
  3. public Integer xIndex;
  4. public Integer yIndex;
  5. public Integer getxIndex() {
  6. return xIndex;
  7. }
  8. public void setxIndex(Integer xIndex) {
  9. this.xIndex = xIndex;
  10. }
  11. public Integer getyIndex() {
  12. return yIndex;
  13. }
  14. public void setyIndex(Integer yIndex) {
  15. this.yIndex = yIndex;
  16. }
  17. }