fc58d5916f8921dfe276ed0e7da9fe2fa6eaff10.svn-base 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package eVVM.apk.ui.vaccination.save;
  2. import java.io.Serializable;
  3. public class ChipModel implements Serializable {
  4. private String chipNumber;
  5. private String textRecord;
  6. private String inoculatorIds;
  7. private double longitude;
  8. private double latitude;
  9. public ChipModel(String chipNumber, String textRecord, String inoculatorIds, double longitude, double latitude) {
  10. this.chipNumber = chipNumber;
  11. this.textRecord = textRecord;
  12. this.inoculatorIds = inoculatorIds;
  13. this.longitude = longitude;
  14. this.latitude = latitude;
  15. }
  16. public String getChipNumber() {
  17. return chipNumber;
  18. }
  19. public void setChipNumber(String chipNumber) {
  20. this.chipNumber = chipNumber;
  21. }
  22. public String getTextRecord() {
  23. return textRecord;
  24. }
  25. public void setTextRecord(String textRecord) {
  26. this.textRecord = textRecord;
  27. }
  28. public String getInoculatorIds() {
  29. return inoculatorIds;
  30. }
  31. public void setInoculatorIds(String inoculatorIds) {
  32. this.inoculatorIds = inoculatorIds;
  33. }
  34. public double getLongitude() {
  35. return longitude;
  36. }
  37. public void setLongitude(double longitude) {
  38. this.longitude = longitude;
  39. }
  40. public double getLatitude() {
  41. return latitude;
  42. }
  43. public void setLatitude(double latitude) {
  44. this.latitude = latitude;
  45. }
  46. }