| | |
| | | public class AddressInfoVo { |
| | | |
| | | @ApiModelProperty(value = "id") |
| | | private String id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "姓名") |
| | | @ApiModelProperty(value = "Last name") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "手机号") |
| | | private String phone; |
| | | @ApiModelProperty(value = "First name") |
| | | private String firstName; |
| | | |
| | | @ApiModelProperty(value = "地区") |
| | | private String area; |
| | | |
| | | @ApiModelProperty(value = "地址") |
| | | |
| | | @ApiModelProperty(value = "Address1") |
| | | private String address; |
| | | |
| | | @ApiModelProperty(value = "是否默认地址 1-是 2-否") |
| | | private Integer isDefault; |
| | | @ApiModelProperty(value = "Address2") |
| | | private String area; |
| | | @ApiModelProperty(value = "Postcode") |
| | | private String postcode; |
| | | |
| | | @ApiModelProperty(value = "Phone Number") |
| | | private String phone; |
| | | @ApiModelProperty(value = "City") |
| | | private String city; |
| | | @ApiModelProperty(value = "State / Province") |
| | | private String province; |
| | | @ApiModelProperty(value = "Country/Region") |
| | | private String country; |
| | | |
| | | /** |
| | | * 经度 |
| | |
| | | */ |
| | | @ApiModelProperty(value = "纬度") |
| | | private String latitude; |
| | | //省 |
| | | |
| | | @ApiModelProperty(value = "省") |
| | | private String province; |
| | | //市 |
| | | |
| | | @ApiModelProperty(value = "市") |
| | | private String city; |
| | | } |