LogisticsSender.java 2.9 KB
Newer Older
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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
package com.yanzuoguang.wxxcx.logistics.vo;

/***
 * <p>发件人信息</p>
 *
 * @author:heyanou
 */
public class LogisticsSender {

    /** <b>是否必填:是</b>
     * <p>发件人姓名,不超过64字节</p>
     */
    private String  name;

    /** <b>是否必填:否</b>
     * <p>发件人座机号码,若不填写则必须填写 mobile,不超过32字节</p>
     */
    private String  tel;

    /** <b>是否必填:否</b>
     * <p>发件人手机号码,若不填写则必须填写 tel,不超过32字节</p>
     */
    private String  mobile;

    /** <b>是否必填:否</b>
     * <p>发件人公司名称,不超过64字节</p>
     */
    private String  company;

    /** <b>是否必填:否</b>
     * <p>发件人邮编,不超过10字节</p>
     */
    private String   post_code;

    /** <b>是否必填:否</b>
     * <p>发件人国家,不超过64字节</p>
     */
    private String  country;

    /** <b>是否必填:是</b>
     * <p>发件人省份,比如:"广东省",不超过64字节</p>
     */
    private String  province;

    /** <b>是否必填:是</b>
     * <p>发件人市/地区,比如:"广州市",不超过64字节</p>
     */
    private String  city;

    /** <b>是否必填:是</b>
     * <p>发件人区/县,比如:"海珠区",不超过64字节</p>
     */
    private String  area;

    /** <b>是否必填:是</b>
     * <p>发件人详细地址,比如:"XX路 XX 号XX大厦XX",不超过512字节</p>
     */
    private String  address;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getTel() {
        return tel;
    }

    public void setTel(String tel) {
        this.tel = tel;
    }

    public String getMobile() {
        return mobile;
    }

    public void setMobile(String mobile) {
        this.mobile = mobile;
    }

    public String getCompany() {
        return company;
    }

    public void setCompany(String company) {
        this.company = company;
    }

    public String getPost_code() {
        return post_code;
    }

    public void setPost_code(String post_code) {
        this.post_code = post_code;
    }

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }

    public String getProvince() {
        return province;
    }

    public void setProvince(String province) {
        this.province = province;
    }

    public String getCity() {
        return city;
    }

    public void setCity(String city) {
        this.city = city;
    }

    public String getArea() {
        return area;
    }

    public void setArea(String area) {
        this.area = area;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }
}