PaypalOrderAddressEx.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.fdkankan.ucenter.pay.paypal.sdk;
  2. import java.io.Serializable;
  3. public class PaypalOrderAddressEx implements Serializable {
  4. private static final long serialVersionUID = 5667747195118555705L;
  5. private String firstName;
  6. private String lastName;
  7. private String countryCode;
  8. private String state;
  9. private String city;
  10. private String address;
  11. private String phone;
  12. private String postalCode;
  13. public String getFirstName() {
  14. return firstName;
  15. }
  16. public void setFirstName(String firstName) {
  17. this.firstName = firstName;
  18. }
  19. public String getLastName() {
  20. return lastName;
  21. }
  22. public void setLastName(String lastName) {
  23. this.lastName = lastName;
  24. }
  25. public String getCountryCode() {
  26. return countryCode;
  27. }
  28. public void setCountryCode(String countryCode) {
  29. this.countryCode = countryCode;
  30. }
  31. public String getState() {
  32. return state;
  33. }
  34. public void setState(String state) {
  35. this.state = state;
  36. }
  37. public String getCity() {
  38. return city;
  39. }
  40. public void setCity(String city) {
  41. this.city = city;
  42. }
  43. public String getAddress() {
  44. return address;
  45. }
  46. public void setAddress(String address) {
  47. this.address = address;
  48. }
  49. public String getPhone() {
  50. return phone;
  51. }
  52. public void setPhone(String phone) {
  53. this.phone = phone;
  54. }
  55. public String getPostalCode() {
  56. return postalCode;
  57. }
  58. public void setPostalCode(String postalCode) {
  59. this.postalCode = postalCode;
  60. }
  61. }