OrderWLBean.java 1.95 KB
Newer Older
xucl committed
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
package com.fadu.app.bean.other;

public class OrderWLBean {

	private String address;//收件地址
	
	private int fileType;//文件类型(0:保函;1:保单(发票))
	
	private String id;
	
	private String mobile;//收件人号码
	
	private String reachTime;//上门配送时间
	
	private String receiver;//收件人
	
	private int sendType;//0:快递配送,1:上门配送
	
	private String wl_company;//快递公司
	
	private String wl_order;//物流单号
	
	private String courierName;//配送员姓名

	private String courierPhone;//配送员电话		

	public String getAddress() {
		return address;
	}

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

	public int getFileType() {
		return fileType;
	}

	public void setFileType(int fileType) {
		this.fileType = fileType;
	}

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getMobile() {
		return mobile;
	}

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

	public String getReachTime() {
		return reachTime;
	}

	public void setReachTime(String reachTime) {
		this.reachTime = reachTime;
	}

	public String getReceiver() {
		return receiver;
	}

	public void setReceiver(String receiver) {
		this.receiver = receiver;
	}

	public int getSendType() {
		return sendType;
	}

	public void setSendType(int sendType) {
		this.sendType = sendType;
	}

	public String getWl_company() {
		return wl_company;
	}

	public void setWl_company(String wl_company) {
		this.wl_company = wl_company;
	}

	public String getWl_order() {
		return wl_order;
	}

	public void setWl_order(String wl_order) {
		this.wl_order = wl_order;
	}

	public String getCourierName() {
		return courierName;
	}

	public void setCourierName(String courierName) {
		this.courierName = courierName;
	}

	public String getCourierPhone() {
		return courierPhone;
	}

	public void setCourierPhone(String courierPhone) {
		this.courierPhone = courierPhone;
	}

}