1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package com.yanzuoguang.wxxcx.immediateDelivery.vo;
/***
* 发件人信息,顺丰同城急送必须填写,美团配送、达达、闪送,若传了shop_no的值可不填该字段
*
* @author:heyanou
*/
public class Sender {
/**
* <b>是否必填:是</b>
* <b>姓名,最长不超过256个字符</b>
*/
private String name;// string
/**
* <b>是否必填:是</b>
* <b>城市名称,如广州市</b>
*/
private String city;// string
/**
* <b>是否必填:是</b>
* <b>地址(街道、小区、大厦等,用于定位)</b>
*/
private String address;// string
/**
* <b>是否必填:是</b>
* <b>地址详情(楼号、单元号、层号)</b>
*/
private String address_detail;// string
/**
* <b>是否必填:是</b>
* <b>电话/手机号,最长不超过64个字符</b>
*/
private String phone;// string
/**
* <b>是否必填:是</b>
* <b>经度(火星坐标或百度坐标,和 coordinate_type 字段配合使用,确到小数点后6位</b>
*/
private double lng;// number
/**
* <b>是否必填:是</b>
* <b>纬度(火星坐标或百度坐标,和 coordinate_type 字段配合使用,精确到小数点后6位)</b>
*/
private double lat;// number
/**
* <b>是否必填:否</b>
* <b>坐标类型,0:火星坐标(高德,腾讯地图均采用火星坐标) 1:百度坐标</b>
*/
private int coordinate_type;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
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 getAddress_detail() {
return address_detail;
}
public void setAddress_detail(String address_detail) {
this.address_detail = address_detail;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public double getLng() {
return lng;
}
public void setLng(double lng) {
this.lng = lng;
}
public double getLat() {
return lat;
}
public void setLat(double lat) {
this.lat = lat;
}
public int getCoordinate_type() {
return coordinate_type;
}
public void setCoordinate_type(int coordinate_type) {
this.coordinate_type = coordinate_type;
}
}