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.
48 lines
1.4 KiB
Java
48 lines
1.4 KiB
Java
|
2 years ago
|
package com.xjgs.xmlParseVO;
|
||
|
|
|
||
|
|
import org.dom4j.Element;
|
||
|
|
|
||
|
|
public class xmlmaster {
|
||
|
|
|
||
|
|
public xmlmaster(){}
|
||
|
|
|
||
|
|
public xmlmaster(Element el)
|
||
|
|
{
|
||
|
|
if(el ==null)
|
||
|
|
{
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
this.FPATNO = new xmlBase(el.element("FPATNO"));
|
||
|
|
this.FDPTNO = new xmlBase(el.element("FDPTNO"));
|
||
|
|
this.FBEDNO = new xmlBase(el.element("FBEDNO"));
|
||
|
|
this.FENTRYNO = new xmlBase(el.element("FENTRYNO"));
|
||
|
|
this.FRECNUM = new xmlBase(el.element("FRECNUM"));
|
||
|
|
this.FTITLE = new xmlBase(el.element("FTITLE"));
|
||
|
|
this.FSTART = new xmlBase(el.element("FSTART"));
|
||
|
|
this.FDATE = new xmlBase(el.element("FDATE"));
|
||
|
|
this.FXSLBROWSE = new xmlBase(el.element("FXSLBROWSE"));
|
||
|
|
this.FXSLMODIFY = new xmlBase(el.element("FXSLMODIFY"));
|
||
|
|
this.FSIGNNO = new xmlBase(el.element("FSIGNNO"));
|
||
|
|
this.FEMPNODEL = new xmlBase(el.element("FEMPNODEL"));
|
||
|
|
this.FDATEDEL = new xmlBase(el.element("FDATEDEL"));
|
||
|
|
this.FVALID = new xmlBase(el.element("FVALID"));
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public xmlBase FPATNO;
|
||
|
|
public xmlBase FDPTNO;
|
||
|
|
public xmlBase FBEDNO;
|
||
|
|
public xmlBase FENTRYNO;
|
||
|
|
public xmlBase FRECNUM;
|
||
|
|
public xmlBase FTITLE;
|
||
|
|
public xmlBase FSTART;
|
||
|
|
public xmlBase FDATE;
|
||
|
|
public xmlBase FXSLBROWSE;
|
||
|
|
public xmlBase FXSLMODIFY;
|
||
|
|
public xmlBase FSIGNNO;
|
||
|
|
public xmlBase FEMPNODEL;
|
||
|
|
public xmlBase FDATEDEL;
|
||
|
|
public xmlBase FVALID;
|
||
|
|
}
|