package com.cku.oa.sfexpress.entity;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name = "Response")
public class RoutePushResponse {

	private String service;

	private String head;

	public String getService() {
		return service;
	}

	@XmlAttribute(name = "service")
	public void setService(String service) {
		this.service = service;
	}

	public String getHead() {
		return head;
	}

	@XmlElement(name = "Head")
	public void setHead(String head) {
		this.head = head;
	}

}
