package com.cku.oa.sfexpress.entity;

import javax.xml.bind.annotation.XmlAttribute;

public class ExpressOrder {

	private String orderid;
	private String mailno;
	private String j_company;
	private String j_province;
	private String j_contact;
	private String j_tel;
	private String j_mobile;
	private String j_city;
	private String j_county;
	private String j_address;
	private String d_company;
	private String d_contact;
	private String d_tel;
	private String d_mobile;
	private String d_province;
	private String d_city;
	private String d_county;
	private String d_address;
	private String custid;
	private String pay_method;

	public String getOrderid() {
		return orderid;
	}

	@XmlAttribute()
	public void setOrderid(String orderid) {
		this.orderid = orderid;
	}

	public String getJ_province() {
		return j_province;
	}

	@XmlAttribute(name = "j_province")
	public void setJ_province(String j_province) {
		this.j_province = j_province;
	}

	public String getMailno() {
		return mailno;
	}

	@XmlAttribute()
	public void setMailno(String mailno) {
		this.mailno = mailno;
	}

	public String getJ_company() {
		return j_company;
	}

	@XmlAttribute(name = "j_company")
	public void setJ_company(String j_company) {
		this.j_company = j_company;
	}

	public String getJ_contact() {
		return j_contact;
	}

	@XmlAttribute(name = "j_contact")
	public void setJ_contact(String j_contact) {
		this.j_contact = j_contact;
	}

	public String getJ_tel() {
		return j_tel;
	}

	@XmlAttribute(name = "j_tel")
	public void setJ_tel(String j_tel) {
		this.j_tel = j_tel;
	}

	public String getJ_mobile() {
		return j_mobile;
	}

	@XmlAttribute(name = "j_mobile")
	public void setJ_mobile(String j_mobile) {
		this.j_mobile = j_mobile;
	}

	public String getJ_city() {
		return j_city;
	}

	@XmlAttribute(name = "j_city")
	public void setJ_city(String j_city) {
		this.j_city = j_city;
	}

	public String getJ_county() {
		return j_county;
	}

	@XmlAttribute(name = "j_county")
	public void setJ_county(String j_county) {
		this.j_county = j_county;
	}

	public String getJ_address() {
		return j_address;
	}

	@XmlAttribute(name = "j_address")
	public void setJ_address(String j_address) {
		this.j_address = j_address;
	}

	public String getD_company() {
		return d_company;
	}

	@XmlAttribute(name = "d_company")
	public void setD_company(String d_company) {
		this.d_company = d_company;
	}

	public String getD_contact() {
		return d_contact;
	}

	@XmlAttribute(name = "d_contact")
	public void setD_contact(String d_contact) {
		this.d_contact = d_contact;
	}

	public String getD_tel() {
		return d_tel;
	}

	@XmlAttribute(name = "d_tel")
	public void setD_tel(String d_tel) {
		this.d_tel = d_tel;
	}

	public String getD_mobile() {
		return d_mobile;
	}

	@XmlAttribute(name = "d_mobile")
	public void setD_mobile(String d_mobile) {
		this.d_mobile = d_mobile;
	}

	public String getD_province() {
		return d_province;
	}

	@XmlAttribute(name = "d_province")
	public void setD_province(String d_province) {
		this.d_province = d_province;
	}

	public String getD_city() {
		return d_city;
	}

	@XmlAttribute(name = "d_city")
	public void setD_city(String d_city) {
		this.d_city = d_city;
	}

	public String getD_county() {
		return d_county;
	}

	@XmlAttribute(name = "d_county")
	public void setD_county(String d_county) {
		this.d_county = d_county;
	}

	public String getD_address() {
		return d_address;
	}

	@XmlAttribute(name = "d_address")
	public void setD_address(String d_address) {
		this.d_address = d_address;
	}

	public String getCustid() {
		return custid;
	}

	@XmlAttribute(name = "custid")
	public void setCustid(String custid) {
		this.custid = custid;
	}

	public String getPay_method() {
		return pay_method;
	}

	@XmlAttribute(name = "pay_method")
	public void setPay_method(String pay_method) {
		this.pay_method = pay_method;
	}

}
