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
627 B
Java
37 lines
627 B
Java
|
2 years ago
|
package com.xjgs.xmlParseVO;
|
||
|
|
|
||
|
|
|
||
|
|
import org.dom4j.Element;
|
||
|
|
|
||
|
|
public class xmlDiveDos {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
public xmlDiveDos()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public xmlDiveDos(Element el)
|
||
|
|
{
|
||
|
|
if(el ==null)
|
||
|
|
{
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
this.zgy = new xmlBase(el.element("zgy"));
|
||
|
|
this.zcs = new xmlBase(el.element("zcs"));
|
||
|
|
this.Zts = new xmlBase(el.element("Zts"));
|
||
|
|
this.zrq1 = new xmlqrq1(el.element("zrq1"));
|
||
|
|
this.zrq2 = new xmlqrq2(el.element("zrq2"));
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public xmlBase zgy;
|
||
|
|
public xmlBase zcs;
|
||
|
|
public xmlBase Zts;
|
||
|
|
public xmlqrq1 zrq1;
|
||
|
|
public xmlqrq2 zrq2;
|
||
|
|
}
|