Agent.java 926 Bytes
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
package com.yanzuoguang.wxxcx.immediateDelivery.vo;

/***
 * 骑手信息, 骑手接单时需返回
 *
 * @author:heyanou
 */
public class Agent
{
    /**<p>是否必填:是</p>
     * <p>骑手姓名</p>
     */
    private String  name;
    /**<p>是否必填:是</p>
     * <p>骑手电话</p>
     */
    private String   phone;
    /**<p>是否必填:否</p>
     * <p>电话是否加密</p>
     */
    private int  is_phone_encrypted;

    public String getName() {
        return name;
    }

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

    public String getPhone() {
        return phone;
    }

    public void setPhone(String phone) {
        this.phone = phone;
    }

    public int getIs_phone_encrypted() {
        return is_phone_encrypted;
    }

    public void setIs_phone_encrypted(int is_phone_encrypted) {
        this.is_phone_encrypted = is_phone_encrypted;
    }
}