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.
37 lines
961 B
Java
37 lines
961 B
Java
|
2 years ago
|
package com.xjgs.xmlParseVO;
|
||
|
|
|
||
|
|
import org.dom4j.Element;
|
||
|
|
|
||
|
|
public class xmlOthDiagBase {
|
||
|
|
|
||
|
|
|
||
|
|
public xmlOthDiagBase()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
public xmlOthDiagBase(Element el)
|
||
|
|
{
|
||
|
|
if(el ==null)
|
||
|
|
{
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
this.DiagName = new xmlBase(el.element("DiagName"));
|
||
|
|
this.HealIf = new xmlBase(el.element("HealIf"));
|
||
|
|
this.MendIf = new xmlBase(el.element("MendIf"));
|
||
|
|
this.NotHealIf = new xmlBase(el.element("NotHealIf"));
|
||
|
|
this.DeathIf = new xmlBase(el.element("DeathIf"));
|
||
|
|
this.OthIf = new xmlBase(el.element("OthIf"));
|
||
|
|
this.ICD10 = new xmlBase(el.element("ICD10"));
|
||
|
|
this.xmlInHospStat = new xmlInHospStat(el.element("InHospStat"));
|
||
|
|
}
|
||
|
|
public xmlInHospStat xmlInHospStat;
|
||
|
|
public xmlBase DiagName;
|
||
|
|
public xmlBase HealIf;
|
||
|
|
public xmlBase MendIf;
|
||
|
|
public xmlBase NotHealIf;
|
||
|
|
public xmlBase DeathIf;
|
||
|
|
public xmlBase OthIf;
|
||
|
|
public xmlBase ICD10;
|
||
|
|
|
||
|
|
}
|