MessageBodyXmlEntity.java 432 字节
package com.thinkgem.jeesite.modules.xml;

import com.thoughtworks.xstream.annotations.XStreamAlias;

public class MessageBodyXmlEntity {
	
	@XStreamAlias("COMMAND_INFO")
	private CommandXmlEntity commandXmlEntity;

	public CommandXmlEntity getCommandXmlEntity() {
		return commandXmlEntity;
	}

	public void setCommandXmlEntity(CommandXmlEntity commandXmlEntity) {
		this.commandXmlEntity = commandXmlEntity;
	}
}