|
|
|
@ -8,6 +8,10 @@ import com.thoughtworks.xstream.annotations.XStreamOmitField;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
|
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
@ -20,9 +24,12 @@ import java.util.Map;
|
|
|
|
|
**/
|
|
|
|
|
@Data
|
|
|
|
|
@XStreamAlias("server")
|
|
|
|
|
@XmlRootElement(name ="server")
|
|
|
|
|
@XmlAccessorType(XmlAccessType.NONE)
|
|
|
|
|
public class SuitServerModel {
|
|
|
|
|
|
|
|
|
|
// 执行方法命令
|
|
|
|
|
@XmlElement
|
|
|
|
|
@ApiParam(value = "适配器code")
|
|
|
|
|
private String suitCaseCode;
|
|
|
|
|
/* 认证使用 以后使用 */
|
|
|
|
@ -31,6 +38,7 @@ public class SuitServerModel {
|
|
|
|
|
// 请求ID
|
|
|
|
|
private String requestId;
|
|
|
|
|
// 传输单对象
|
|
|
|
|
@XmlElement(name = "data")
|
|
|
|
|
private Object obj;
|
|
|
|
|
// 传输集合
|
|
|
|
|
private List list;
|
|
|
|
@ -44,6 +52,7 @@ public class SuitServerModel {
|
|
|
|
|
*/
|
|
|
|
|
// @XStreamImplicit
|
|
|
|
|
@XStreamCDATA
|
|
|
|
|
@XmlElement
|
|
|
|
|
private String suitMessage;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|