12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package com.fdkankan.ucenter.pay.paypal.sdk;
- import java.io.Serializable;
- public class PaypalOrderAddressEx implements Serializable {
- private static final long serialVersionUID = 5667747195118555705L;
- private String firstName;
- private String lastName;
- private String countryCode;
- private String state;
- private String city;
- private String address;
- private String phone;
- private String postalCode;
- public String getFirstName() {
- return firstName;
- }
- public void setFirstName(String firstName) {
- this.firstName = firstName;
- }
- public String getLastName() {
- return lastName;
- }
- public void setLastName(String lastName) {
- this.lastName = lastName;
- }
- public String getCountryCode() {
- return countryCode;
- }
- public void setCountryCode(String countryCode) {
- this.countryCode = countryCode;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getCity() {
- return city;
- }
- public void setCity(String city) {
- this.city = city;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- public String getPostalCode() {
- return postalCode;
- }
- public void setPostalCode(String postalCode) {
- this.postalCode = postalCode;
- }
- }
|