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.
29 lines
490 B
Java
29 lines
490 B
Java
|
2 years ago
|
package com.xjgs.xmlParseVO;
|
||
|
|
|
||
|
|
import org.dom4j.Element;
|
||
|
|
|
||
|
|
public class xmlzrq1 {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
public xmlzrq1()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
public xmlzrq1(Element el)
|
||
|
|
{
|
||
|
|
if(el ==null)
|
||
|
|
{
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
this.zrq1Year = new xmlBase(el.element("zrq1Year"));
|
||
|
|
this.zrq1Mon = new xmlBase(el.element("zrq1Mon"));
|
||
|
|
this.zrq1Day = new xmlBase(el.element("zrq1Day"));
|
||
|
|
}
|
||
|
|
|
||
|
|
public xmlBase zrq1Year;
|
||
|
|
public xmlBase zrq1Mon;
|
||
|
|
public xmlBase zrq1Day;
|
||
|
|
}
|