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; } }