You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
Java
39 lines
1.1 KiB
Java
package com.xjgs.xmlParseVO;
|
|
|
|
import org.dom4j.Element;
|
|
|
|
public class xmlOthDiag {
|
|
|
|
public xmlOthDiag()
|
|
{
|
|
|
|
}
|
|
public xmlOthDiag(Element el)
|
|
{
|
|
if(el ==null)
|
|
{
|
|
return;
|
|
}
|
|
this.OthDiag1 = new xmlOthDiagBase(el.element("OthDiag1"));
|
|
this.OthDiag2 = new xmlOthDiagBase(el.element("OthDiag2"));
|
|
this.OthDiag3 = new xmlOthDiagBase(el.element("OthDiag3"));
|
|
this.OthDiag4 = new xmlOthDiagBase(el.element("OthDiag4"));
|
|
this.OthDiag5 = new xmlOthDiagBase(el.element("OthDiag5"));
|
|
this.OthDiag6 = new xmlOthDiagBase(el.element("OthDiag6"));
|
|
this.OthDiag7 = new xmlOthDiagBase(el.element("OthDiag7"));
|
|
this.OthDiag8 = new xmlOthDiagBase(el.element("OthDiag8"));
|
|
this.OthDiag9 = new xmlOthDiagBase(el.element("OthDiag9"));
|
|
}
|
|
|
|
|
|
public xmlOthDiagBase OthDiag1;
|
|
public xmlOthDiagBase OthDiag2;
|
|
public xmlOthDiagBase OthDiag3;
|
|
public xmlOthDiagBase OthDiag4;
|
|
public xmlOthDiagBase OthDiag5;
|
|
public xmlOthDiagBase OthDiag6;
|
|
public xmlOthDiagBase OthDiag7;
|
|
public xmlOthDiagBase OthDiag8;
|
|
public xmlOthDiagBase OthDiag9;
|
|
}
|