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.
64 lines
1.7 KiB
Java
64 lines
1.7 KiB
Java
|
2 years ago
|
package com.xjgs.xmlParseVO;
|
||
|
|
|
||
|
|
import org.dom4j.Attribute;
|
||
|
|
import org.dom4j.Element;
|
||
|
|
|
||
|
|
public class xmlDiagBase {
|
||
|
|
|
||
|
|
|
||
|
|
public xmlDiagBase(){}
|
||
|
|
|
||
|
|
public xmlDiagBase(Element el)
|
||
|
|
{
|
||
|
|
if(el==null)
|
||
|
|
{
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
Attribute tb = el.attribute("num");
|
||
|
|
if(tb !=null)
|
||
|
|
{
|
||
|
|
this.num = tb.getValue();
|
||
|
|
}
|
||
|
|
|
||
|
|
this.FPATNO = new xmlBase(el.element("FPATNO"));
|
||
|
|
this.FDIAGCLASS = new xmlBase(el.element("FDIAGCLASS"));
|
||
|
|
this.FDIAGLEVEL = new xmlBase(el.element("FDIAGLEVEL"));
|
||
|
|
this.FICDNO = new xmlBase(el.element("FICDNO"));
|
||
|
|
this.FDIAGNAME = new xmlBase(el.element("FDIAGNAME"));
|
||
|
|
this.FDIAGDATE = new xmlBase(el.element("FDIAGDATE"));
|
||
|
|
this.FSIGNATURE = new xmlBase(el.element("FSIGNATURE"));
|
||
|
|
this.FCLASSNO = new xmlBase(el.element("FCLASSNO"));
|
||
|
|
this.FNUM = new xmlBase(el.element("FNUM"));
|
||
|
|
this.FIFSURE = new xmlBase(el.element("FIFSURE"));
|
||
|
|
this.FDATE = new xmlBase(el.element("FDATE"));
|
||
|
|
this.FOUTCOMPLEX = new xmlBase(el.element("FOUTCOMPLEX"));
|
||
|
|
this.FEMPNO = new xmlBase(el.element("FEMPNO"));
|
||
|
|
this.FEMPNAME = new xmlBase(el.element("FEMPNAME"));
|
||
|
|
this.FGRPNO = new xmlBase(el.element("FGRPNO"));
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
public String num;
|
||
|
|
|
||
|
|
public xmlBase FPATNO;
|
||
|
|
public xmlBase FDIAGCLASS;
|
||
|
|
public xmlBase FDIAGLEVEL;
|
||
|
|
public xmlBase FICDNO;
|
||
|
|
public xmlBase FDIAGNAME;
|
||
|
|
public xmlBase FDIAGDATE;
|
||
|
|
public xmlBase FSIGNATURE;
|
||
|
|
public xmlBase FCLASSNO;
|
||
|
|
public xmlBase FNUM;
|
||
|
|
public xmlBase FIFSURE;
|
||
|
|
public xmlBase FDATE;
|
||
|
|
public xmlBase FOUTCOMPLEX;
|
||
|
|
public xmlBase FEMPNO;
|
||
|
|
public xmlBase FEMPNAME;
|
||
|
|
public xmlBase FGRPNO;
|
||
|
|
}
|