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.

33 lines
502 B
Java

package com.xjgs.xmlParseVO;
import org.dom4j.Element;
public class xmlqrq2 {
public xmlqrq2()
{
}
public xmlqrq2(Element el)
{
if(el ==null)
{
return;
}
this.qrq2Year = new xmlBase(el.element("qrq2Year"));
this.qrq2Mon = new xmlBase(el.element("qrq2Mon"));
this.qrq2Day = new xmlBase(el.element("qrq2Day"));
}
public xmlBase qrq2Year;
public xmlBase qrq2Mon;
public xmlBase qrq2Day;
}