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.
62 lines
1.7 KiB
Java
62 lines
1.7 KiB
Java
|
2 years ago
|
package com.xjgs.xmlParseVO;
|
||
|
|
|
||
|
|
import org.dom4j.Element;
|
||
|
|
|
||
|
|
public class xmlExpenInfo {
|
||
|
|
|
||
|
|
|
||
|
|
public xmlExpenInfo()
|
||
|
|
{}
|
||
|
|
|
||
|
|
public xmlExpenInfo(Element el)
|
||
|
|
{
|
||
|
|
if(el ==null)
|
||
|
|
{
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
this.SUM1 = new xmlBase(el.element("SUM1"));
|
||
|
|
this.CWF = new xmlBase(el.element("CWF"));
|
||
|
|
this.HLF = new xmlBase(el.element("HLF"));
|
||
|
|
this.XYF = new xmlBase(el.element("XYF"));
|
||
|
|
this.ZCHF = new xmlBase(el.element("ZCHF"));
|
||
|
|
this.ZCYF = new xmlBase(el.element("ZCYF"));
|
||
|
|
this.FSF = new xmlBase(el.element("FSF"));
|
||
|
|
this.HYF = new xmlBase(el.element("HYF"));
|
||
|
|
this.SYF = new xmlBase(el.element("SYF"));
|
||
|
|
this.SXF = new xmlBase(el.element("SXF"));
|
||
|
|
this.ZLF = new xmlBase(el.element("ZLF"));
|
||
|
|
this.SSF = new xmlBase(el.element("SSF"));
|
||
|
|
this.JSF = new xmlBase(el.element("JSF"));
|
||
|
|
this.JCF = new xmlBase(el.element("JCF"));
|
||
|
|
this.MZF = new xmlBase(el.element("MZF"));
|
||
|
|
this.YEF = new xmlBase(el.element("YEF"));
|
||
|
|
this.PCF = new xmlBase(el.element("PCF"));
|
||
|
|
this.QTF1 = new xmlBase(el.element("QTF1"));
|
||
|
|
this.QTF2 = new xmlBase(el.element("QTF2"));
|
||
|
|
this.QTF3 = new xmlBase(el.element("QTF3"));
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public xmlBase SUM1;
|
||
|
|
public xmlBase CWF;
|
||
|
|
public xmlBase HLF;
|
||
|
|
public xmlBase XYF;
|
||
|
|
public xmlBase ZCHF;
|
||
|
|
public xmlBase ZCYF;
|
||
|
|
public xmlBase FSF;
|
||
|
|
public xmlBase HYF;
|
||
|
|
public xmlBase SYF;
|
||
|
|
public xmlBase SXF;
|
||
|
|
public xmlBase ZLF;
|
||
|
|
public xmlBase SSF;
|
||
|
|
public xmlBase JSF;
|
||
|
|
public xmlBase JCF;
|
||
|
|
public xmlBase MZF;
|
||
|
|
public xmlBase YEF;
|
||
|
|
public xmlBase PCF;
|
||
|
|
public xmlBase QTF1;
|
||
|
|
public xmlBase QTF2;
|
||
|
|
public xmlBase QTF3;
|
||
|
|
}
|