package com.cku.oa.sfexpress.entity;

import javax.xml.bind.annotation.XmlElement;

public class RoutePushBody {

	private WaybillRoute WaybillRoute;

	public WaybillRoute getWaybillRoute() {
		return WaybillRoute;
	}

	@XmlElement(name = "WaybillRoute")
	public void setWaybillRoute(WaybillRoute waybillRoute) {
		WaybillRoute = waybillRoute;
	}
}
