• JPA注解@SecondaryTables 实现一个实体映射多张数据库表


    参考:http://jingpin.jikexueyuan.com/article/46978.html

    Annotation Type SecondaryTables(参考:https://docs.oracle.com/javaee/7/api/javax/persistence/SecondaryTables.html)

    @Target(value=TYPE)
     @Retention(value=RUNTIME)
    public @interface SecondaryTables
    Specifies multiple secondary tables for an entity.
        Example 1: Multiple secondary tables assuming primary key columns are named the same in all tables.
    
        @Entity
        @Table(name="EMPLOYEE")
        @SecondaryTables({
            @SecondaryTable(name="EMP_DETAIL"),
            @SecondaryTable(name="EMP_HIST")
        })
        public class Employee { ... }
        
    
        Example 2: Multiple secondary tables with differently named primary key columns. 
    
        @Entity
        @Table(name="EMPLOYEE")
        @SecondaryTables({
            @SecondaryTable(name="EMP_DETAIL", 
                pkJoinColumns=@PrimaryKeyJoinColumn(name="EMPL_ID")),
            @SecondaryTable(name="EMP_HIST", 
                pkJoinColumns=@PrimaryKeyJoinColumn(name="EMPLOYEE_ID"))
        })
        public class Employee { ... }
     
    Since:
    Java Persistence 1.0

    例子:

    /*      */ package com.icil.sofs.dao.booking.model;
    /*      */ 
    /*      */ import com.icil.annotation.FormKey;
    /*      */ import com.icil.dao.util.DAODateUtil;
    /*      */ import java.io.Serializable;
    /*      */ import java.math.BigDecimal;
    /*      */ import java.math.BigInteger;
    /*      */ import java.util.ArrayList;
    /*      */ import java.util.Date;
    /*      */ import java.util.List;
    /*      */ import javax.persistence.Column;
    /*      */ import javax.persistence.Entity;
    /*      */ import javax.persistence.GeneratedValue;
    /*      */ import javax.persistence.Id;
    /*      */ import javax.persistence.SecondaryTables;
    /*      */ import javax.persistence.Table;
    /*      */ import javax.persistence.Transient;
    /*      */ import javax.persistence.Version;
    /*      */ import org.hibernate.annotations.ForeignKey;
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ @Entity
    /*      */ @Table(name="ShipperComPartDetail")
    /*      */ @SecondaryTables({@javax.persistence.SecondaryTable(name="ShipperComPartDetLabel", pkJoinColumns={@javax.persistence.PrimaryKeyJoinColumn(name="labelSequence")}), @javax.persistence.SecondaryTable(name="ShipperComPartDetSupLabel", pkJoinColumns={@javax.persistence.PrimaryKeyJoinColumn(name="sequence")}), @javax.persistence.SecondaryTable(name="ShipperComPartDetailSupplement", pkJoinColumns={@javax.persistence.PrimaryKeyJoinColumn(name="sequence")})})
    /*      */ public class ShipperComPartDetailDO
    /*      */   implements Serializable
    /*      */ {
    /*      */   private static final long serialVersionUID = 1L;
    /*      */   @Id
    /*      */   @GeneratedValue
    /*      */   private Integer sequence;
    /*      */   private BigInteger poSequence;
    /*      */   private String poNo;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String poNoLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer poNoAttr;
    /*      */   private Date poDate;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String poDateLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer poDateAttr;
    /*      */   private String partNo;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String partNoLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer partNoAttr;
    /*      */   private String partDesc;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String partDescLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer partDescAttr;
    /*      */   private String vendorPartNo;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String vendorPartNoLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer vendorPartNoAttr;
    /*      */   private String vendorPartDesc;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String vendorPartDescLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer vendorPartDescAttr;
    /*      */   private String eccnNo;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String eccnNoLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer eccnNoAttr;
    /*      */   private String exportHSCCode;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String exportHSCCodeLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer exportHSCCodeAttr;
    /*      */   private String importHSCCode;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String importHSCCodeLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer importHSCCodeAttr;
    /*      */   private String userDefAttr1;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr1Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr1Attr;
    /*      */   private String userDefAttr2;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr2Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr2Attr;
    /*      */   private String userDefAttr3;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr3Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr3Attr;
    /*      */   private String userDefAttr4;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr4Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr4Attr;
    /*      */   private String userDefAttr5;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr5Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr5Attr;
    /*      */   private String userDefAttr6;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr6Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr6Attr;
    /*      */   private String userDefAttr7;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr7Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr7Attr;
    /*      */   private String userDefAttr8;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr8Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr8Attr;
    /*      */   private String userDefAttr9;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr9Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr9Attr;
    /*      */   private String userDefAttr10;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr10Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr10Attr;
    /*      */   private String userDefAttr11;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr11Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr11Attr;
    /*      */   private String userDefAttr12;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr12Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr12Attr;
    /*      */   private String userDefAttr13;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr13Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr13Attr;
    /*      */   private String userDefAttr14;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr14Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr14Attr;
    /*      */   private String userDefAttr15;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr15Label;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr15Attr;
    /*      */   private Integer orderQty;
    /*      */   private Integer qtyToBePickup;
    /*      */   private Integer qtyReceived;
    /*      */   private Integer qtyShipped;
    /*      */   private String qtyUnit;
    /*      */   private Date readyDateLoc;
    /*      */   private String readyDateTz;
    /*      */   private Date readyDateGMT;
    /*      */   private Date mrdLoc;
    /*      */   private String mrdTz;
    /*      */   private Date mrdGMT;
    /*      */   private String unitValCur;
    /*      */   private BigDecimal unitVal;
    /*      */   private String remarks;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String remarksLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer remarksAttr;
    /*      */   private String partDescInLocLan;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String partDescInLocLanLabel;
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer partDescInLocLanAttr;
    /*      */   private Date createDateLoc;
    /*      */   @Column(table="ShipperComPartDetLabel", name="createDateLoc")
    /*      */   private Date createDateLocForLabel;
    /*      */   private String createServer;
    /*      */   @Column(table="ShipperComPartDetLabel", name="createServer")
    /*  270 */   private String createServerForLabel = "icilszx";
    /*      */   
    /*      */ 
    /*  273 */   private Date createDateGMT = DAODateUtil.newGMTDate();
    /*      */   @Column(table="ShipperComPartDetLabel", name="createDateGMT")
    /*  275 */   private Date createDateGMTForLabel = DAODateUtil.newGMTDate();
    /*      */   @Version
    /*      */   private Date timestampGMT;
    /*      */   @Column(table="ShipperComPartDetLabel", name="timestampGMT")
    /*  279 */   private Date timestampGMTForLabel = new Date();
    /*      */   
    /*      */ 
    /*      */ 
    /*      */   @Column(name="bookingNo")
    /*      */   @ForeignKey(name="bookingNo")
    /*      */   @FormKey
    /*      */   private String bookingMainDO_bookingNo;
    /*      */   
    /*      */ 
    /*      */ 
    /*  290 */   private Integer sortSequence = Integer.valueOf(1000);
    /*      */   @Transient
    /*  292 */   private List<PartExceptionsDO> exceptions = new ArrayList();
    /*      */   
    /*      */   @Transient
    /*  295 */   private List<PoHistoryDO> poHistories = new ArrayList();
    /*      */   
    /*      */   @Transient
    /*      */   private Date etdForApprovalLoc;
    /*      */   
    /*      */   @Transient
    /*      */   private String etdForApprovalTz;
    /*      */   
    /*      */   @Transient
    /*      */   private Date etdForApprovalGMT;
    /*      */   
    /*      */   @Transient
    /*      */   private Date etaForApprovalLoc;
    /*      */   
    /*      */   @Transient
    /*      */   private String etaForApprovalTz;
    /*      */   
    /*      */   @Transient
    /*      */   private Date etaForApprovalGMT;
    /*      */   
    /*      */   @Transient
    /*      */   private Date cfsCutOffDateForApprovalLoc;
    /*      */   
    /*      */   @Transient
    /*      */   private String cfsCutOffDateForApprovalTz;
    /*      */   
    /*      */   @Transient
    /*      */   private Date cfsCutOffDateForApprovalGMT;
    /*      */   
    /*      */   @Transient
    /*      */   private Date cyCutOffDateForApprovalLoc;
    /*      */   
    /*      */   @Transient
    /*      */   private String cyCutOffDateForApprovalTz;
    /*      */   
    /*      */   @Transient
    /*      */   private Date cyCutOffDateForApprovalGMT;
    /*      */   
    /*      */   @Transient
    /*      */   private String isApproved;
    /*      */   
    /*      */   @Transient
    /*      */   private String remarksForApprov;
    /*      */   
    /*      */   @Transient
    /*      */   private String suggestedAction;
    /*      */   
    /*      */   @Transient
    /*      */   private String approvalBy;
    /*      */   
    /*      */   @Transient
    /*      */   private Date approvalDateLoc;
    /*      */   
    /*      */   @Transient
    /*      */   private String approvalDateTz;
    /*      */   
    /*      */   @Transient
    /*      */   private Date approvalDateGMT;
    /*      */   
    /*      */   @Transient
    /*      */   private Integer approvalSeq;
    /*      */   
    /*      */   @Transient
    /*      */   private Date approvalTimestampGMT;
    /*      */   
    /*      */   @Transient
    /*      */   private Date createDateLocForApproval;
    /*      */   
    /*      */   @Transient
    /*      */   private Date createDateGMTForApproval;
    /*      */   
    /*      */   @Transient
    /*      */   private String createServerForApproval;
    /*      */   
    /*      */   private String userDefAttr16;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr16Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr16Attr;
    /*      */   
    /*      */   private String userDefAttr17;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr17Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr17Attr;
    /*      */   
    /*      */   private String userDefAttr18;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr18Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr18Attr;
    /*      */   
    /*      */   private String userDefAttr19;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr19Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr19Attr;
    /*      */   
    /*      */   private String userDefAttr20;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr20Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr20Attr;
    /*      */   
    /*      */   private String userDefAttr21;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr21Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr21Attr;
    /*      */   
    /*      */   private String userDefAttr22;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private String userDefAttr22Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetLabel")
    /*      */   private Integer userDefAttr22Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup1;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup1Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup1Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup2;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup2Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup2Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup3;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup3Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup3Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup4;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup4Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup4Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup5;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup5Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup5Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup6;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup6Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup6Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup7;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup7Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup7Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup8;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup8Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup8Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup9;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup9Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup9Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup10;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup10Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup10Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup11;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup11Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup11Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup12;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup12Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup12Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup13;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup13Label;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup13Attr;
    /*      */   
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup14;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup14Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup14Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup15;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup15Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup15Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup16;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup16Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup16Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup17;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup17Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup17Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup18;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup18Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup18Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup19;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup19Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup19Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup20;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup20Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup20Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup21;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup21Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup21Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup22;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup22Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup22Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup23;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup23Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup23Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup24;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup24Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup24Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup25;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup25Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup25Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup26;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup26Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup26Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup27;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup27Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup27Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup28;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup28Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup28Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup29;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup29Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup29Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup30;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup30Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup30Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup31;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup31Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup31Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup32;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup32Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup32Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup33;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup33Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup33Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup34;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup34Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup34Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup35;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup35Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup35Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup36;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup36Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup36Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup37;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup37Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup37Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup38;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup38Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup38Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup39;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup39Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup39Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup40;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup40Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup40Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup41;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup41Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup41Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup42;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup42Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup42Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup43;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup43Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup43Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup44;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup44Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup44Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup45;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup45Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup45Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup46;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup46Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup46Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup47;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup47Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup47Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup48;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup48Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup48Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup49;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup49Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup49Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup50;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup50Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup50Attr;
    /*      */   @Column(table="ShipperComPartDetailSupplement")
    /*      */   private String userDefAttrSup51;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private String userDefAttrSup51Label;
    /*      */   @Column(table="ShipperComPartDetSupLabel")
    /*      */   private Integer userDefAttrSup51Attr;
    /*      */   @Transient
    /*      */   private String oriCourierName;
    /*      */   @Transient
    /*      */   private String oriCourierNo;
    /*      */   @Column(table="ShipperComPartDetailSupplement", name="createDateLoc")
    /*      */   private Date createDateLocSup;
    /*      */   @Column(table="ShipperComPartDetSupLabel", name="createDateLoc")
    /*      */   private Date createDateLocSupForLabel;
    /*      */   @Column(table="ShipperComPartDetailSupplement", name="createServer")
    /*      */   private String createServerSup;
    /*      */   @Column(table="ShipperComPartDetSupLabel", name="createServer")
    /*      */   private String createServerSupForLabel;
    /*      */   @Column(table="ShipperComPartDetailSupplement", name="createDateGMT")
    /*      */   private Date createDateGMTSup;
    /*      */   @Column(table="ShipperComPartDetSupLabel", name="createDateGMT")
    /*      */   private Date createDateGMTSupForLabel;
    /*      */   @Column(table="ShipperComPartDetailSupplement", name="timestampGMT")
    /*      */   private Date timestampGMTSup;
    /*      */   @Column(table="ShipperComPartDetSupLabel", name="timestampGMT")
    /*      */   private Date timestampGMTSupForLabel;
    /*      */   @Transient
    /*      */   private String aesNo;
    /*      */   @Transient
    /*      */   private String itnNo;
    /*      */   
    /*      */   public ShipperComPartDetailDO() {}
    /*      */   
    /*      */   public Integer getSortSequence()
    /*      */   {
    /*  799 */     return this.sortSequence;
    /*      */   }
    /*      */   
    /*      */   public void setSortSequence(Integer sortSequence)
    /*      */   {
    /*  804 */     this.sortSequence = sortSequence;
    /*      */   }
    /*      */   
    /*      */   public List<PartExceptionsDO> getExceptions()
    /*      */   {
    /*  809 */     return this.exceptions;
    /*      */   }
    /*      */   
    /*      */   public void setExceptions(List<PartExceptionsDO> exceptions) {
    /*  813 */     this.exceptions = exceptions;
    /*      */   }
    /*      */   
    /*      */   public Integer getSequence() {
    /*  817 */     return this.sequence;
    /*      */   }
    /*      */   
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */   public String getPoNo()
    /*      */   {
    /*  830 */     return this.poNo;
    /*      */   }
    /*      */   
    /*      */   public void setPoNo(String poNo) {
    /*  834 */     this.poNo = poNo;
    /*      */   }
    /*      */   
    /*      */   public String getPoNoLabel() {
    /*  838 */     return this.poNoLabel;
    /*      */   }
    /*      */   
    /*      */   public void setPoNoLabel(String poNoLabel) {
    /*  842 */     this.poNoLabel = poNoLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getPoNoAttr() {
    /*  846 */     return this.poNoAttr;
    /*      */   }
    /*      */   
    /*      */   public void setPoNoAttr(Integer poNoAttr) {
    /*  850 */     this.poNoAttr = poNoAttr;
    /*      */   }
    /*      */   
    /*      */   public Date getPoDate() {
    /*  854 */     return this.poDate;
    /*      */   }
    /*      */   
    /*      */   public void setPoDate(Date poDate) {
    /*  858 */     this.poDate = poDate;
    /*      */   }
    /*      */   
    /*      */   public String getPoDateLabel() {
    /*  862 */     return this.poDateLabel;
    /*      */   }
    /*      */   
    /*      */   public void setPoDateLabel(String poDateLabel) {
    /*  866 */     this.poDateLabel = poDateLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getPoDateAttr() {
    /*  870 */     return this.poDateAttr;
    /*      */   }
    /*      */   
    /*      */   public void setPoDateAttr(Integer poDateAttr) {
    /*  874 */     this.poDateAttr = poDateAttr;
    /*      */   }
    /*      */   
    /*      */   public String getPartNo() {
    /*  878 */     return this.partNo;
    /*      */   }
    /*      */   
    /*      */   public void setPartNo(String partNo) {
    /*  882 */     this.partNo = partNo;
    /*      */   }
    /*      */   
    /*      */   public String getPartNoLabel() {
    /*  886 */     return this.partNoLabel;
    /*      */   }
    /*      */   
    /*      */   public void setPartNoLabel(String partNoLabel) {
    /*  890 */     this.partNoLabel = partNoLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getPartNoAttr() {
    /*  894 */     return this.partNoAttr;
    /*      */   }
    /*      */   
    /*      */   public void setPartNoAttr(Integer partNoAttr) {
    /*  898 */     this.partNoAttr = partNoAttr;
    /*      */   }
    /*      */   
    /*      */   public String getPartDesc() {
    /*  902 */     return this.partDesc;
    /*      */   }
    /*      */   
    /*      */   public void setPartDesc(String partDesc) {
    /*  906 */     this.partDesc = partDesc;
    /*      */   }
    /*      */   
    /*      */   public String getPartDescLabel() {
    /*  910 */     return this.partDescLabel;
    /*      */   }
    /*      */   
    /*      */   public void setPartDescLabel(String partDescLabel) {
    /*  914 */     this.partDescLabel = partDescLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getPartDescAttr() {
    /*  918 */     return this.partDescAttr;
    /*      */   }
    /*      */   
    /*      */   public void setPartDescAttr(Integer partDescAttr) {
    /*  922 */     this.partDescAttr = partDescAttr;
    /*      */   }
    /*      */   
    /*      */   public String getVendorPartNo() {
    /*  926 */     return this.vendorPartNo;
    /*      */   }
    /*      */   
    /*      */   public void setVendorPartNo(String vendorPartNo) {
    /*  930 */     this.vendorPartNo = vendorPartNo;
    /*      */   }
    /*      */   
    /*      */   public String getVendorPartNoLabel() {
    /*  934 */     return this.vendorPartNoLabel;
    /*      */   }
    /*      */   
    /*      */   public void setVendorPartNoLabel(String vendorPartNoLabel) {
    /*  938 */     this.vendorPartNoLabel = vendorPartNoLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getVendorPartNoAttr() {
    /*  942 */     return this.vendorPartNoAttr;
    /*      */   }
    /*      */   
    /*      */   public void setVendorPartNoAttr(Integer vendorPartNoAttr) {
    /*  946 */     this.vendorPartNoAttr = vendorPartNoAttr;
    /*      */   }
    /*      */   
    /*      */   public String getVendorPartDesc() {
    /*  950 */     return this.vendorPartDesc;
    /*      */   }
    /*      */   
    /*      */   public void setVendorPartDesc(String vendorPartDesc) {
    /*  954 */     this.vendorPartDesc = vendorPartDesc;
    /*      */   }
    /*      */   
    /*      */   public String getVendorPartDescLabel() {
    /*  958 */     return this.vendorPartDescLabel;
    /*      */   }
    /*      */   
    /*      */   public void setVendorPartDescLabel(String vendorPartDescLabel) {
    /*  962 */     this.vendorPartDescLabel = vendorPartDescLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getVendorPartDescAttr() {
    /*  966 */     return this.vendorPartDescAttr;
    /*      */   }
    /*      */   
    /*      */   public void setVendorPartDescAttr(Integer vendorPartDescAttr) {
    /*  970 */     this.vendorPartDescAttr = vendorPartDescAttr;
    /*      */   }
    /*      */   
    /*      */   public String getEccnNo() {
    /*  974 */     return this.eccnNo;
    /*      */   }
    /*      */   
    /*      */   public void setEccnNo(String eccnNo) {
    /*  978 */     this.eccnNo = eccnNo;
    /*      */   }
    /*      */   
    /*      */   public String getEccnNoLabel() {
    /*  982 */     return this.eccnNoLabel;
    /*      */   }
    /*      */   
    /*      */   public void setEccnNoLabel(String eccnNoLabel) {
    /*  986 */     this.eccnNoLabel = eccnNoLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getEccnNoAttr() {
    /*  990 */     return this.eccnNoAttr;
    /*      */   }
    /*      */   
    /*      */   public void setEccnNoAttr(Integer eccnNoAttr) {
    /*  994 */     this.eccnNoAttr = eccnNoAttr;
    /*      */   }
    /*      */   
    /*      */   public String getExportHSCCode() {
    /*  998 */     return this.exportHSCCode;
    /*      */   }
    /*      */   
    /*      */   public void setExportHSCCode(String exportHSCCode) {
    /* 1002 */     this.exportHSCCode = exportHSCCode;
    /*      */   }
    /*      */   
    /*      */   public String getExportHSCCodeLabel() {
    /* 1006 */     return this.exportHSCCodeLabel;
    /*      */   }
    /*      */   
    /*      */   public void setExportHSCCodeLabel(String exportHSCCodeLabel) {
    /* 1010 */     this.exportHSCCodeLabel = exportHSCCodeLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getExportHSCCodeAttr() {
    /* 1014 */     return this.exportHSCCodeAttr;
    /*      */   }
    /*      */   
    /*      */   public void setExportHSCCodeAttr(Integer exportHSCCodeAttr) {
    /* 1018 */     this.exportHSCCodeAttr = exportHSCCodeAttr;
    /*      */   }
    /*      */   
    /*      */   public String getImportHSCCode() {
    /* 1022 */     return this.importHSCCode;
    /*      */   }
    /*      */   
    /*      */   public void setImportHSCCode(String importHSCCode) {
    /* 1026 */     this.importHSCCode = importHSCCode;
    /*      */   }
    /*      */   
    /*      */   public String getImportHSCCodeLabel() {
    /* 1030 */     return this.importHSCCodeLabel;
    /*      */   }
    /*      */   
    /*      */   public void setImportHSCCodeLabel(String importHSCCodeLabel) {
    /* 1034 */     this.importHSCCodeLabel = importHSCCodeLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getImportHSCCodeAttr() {
    /* 1038 */     return this.importHSCCodeAttr;
    /*      */   }
    /*      */   
    /*      */   public void setImportHSCCodeAttr(Integer importHSCCodeAttr) {
    /* 1042 */     this.importHSCCodeAttr = importHSCCodeAttr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr1() {
    /* 1046 */     return this.userDefAttr1;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr1(String userDefAttr1) {
    /* 1050 */     this.userDefAttr1 = userDefAttr1;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr1Label() {
    /* 1054 */     return this.userDefAttr1Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr1Label(String userDefAttr1Label) {
    /* 1058 */     this.userDefAttr1Label = userDefAttr1Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr1Attr() {
    /* 1062 */     return this.userDefAttr1Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr1Attr(Integer userDefAttr1Attr) {
    /* 1066 */     this.userDefAttr1Attr = userDefAttr1Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr2() {
    /* 1070 */     return this.userDefAttr2;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr2(String userDefAttr2) {
    /* 1074 */     this.userDefAttr2 = userDefAttr2;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr2Label() {
    /* 1078 */     return this.userDefAttr2Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr2Label(String userDefAttr2Label) {
    /* 1082 */     this.userDefAttr2Label = userDefAttr2Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr2Attr() {
    /* 1086 */     return this.userDefAttr2Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr2Attr(Integer userDefAttr2Attr) {
    /* 1090 */     this.userDefAttr2Attr = userDefAttr2Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr3() {
    /* 1094 */     return this.userDefAttr3;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr3(String userDefAttr3) {
    /* 1098 */     this.userDefAttr3 = userDefAttr3;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr3Label() {
    /* 1102 */     return this.userDefAttr3Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr3Label(String userDefAttr3Label) {
    /* 1106 */     this.userDefAttr3Label = userDefAttr3Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr3Attr() {
    /* 1110 */     return this.userDefAttr3Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr3Attr(Integer userDefAttr3Attr) {
    /* 1114 */     this.userDefAttr3Attr = userDefAttr3Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr4() {
    /* 1118 */     return this.userDefAttr4;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr4(String userDefAttr4) {
    /* 1122 */     this.userDefAttr4 = userDefAttr4;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr4Label() {
    /* 1126 */     return this.userDefAttr4Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr4Label(String userDefAttr4Label) {
    /* 1130 */     this.userDefAttr4Label = userDefAttr4Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr4Attr() {
    /* 1134 */     return this.userDefAttr4Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr4Attr(Integer userDefAttr4Attr) {
    /* 1138 */     this.userDefAttr4Attr = userDefAttr4Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr5() {
    /* 1142 */     return this.userDefAttr5;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr5(String userDefAttr5) {
    /* 1146 */     this.userDefAttr5 = userDefAttr5;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr5Label() {
    /* 1150 */     return this.userDefAttr5Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr5Label(String userDefAttr5Label) {
    /* 1154 */     this.userDefAttr5Label = userDefAttr5Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr5Attr() {
    /* 1158 */     return this.userDefAttr5Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr5Attr(Integer userDefAttr5Attr) {
    /* 1162 */     this.userDefAttr5Attr = userDefAttr5Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr6() {
    /* 1166 */     return this.userDefAttr6;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr6(String userDefAttr6) {
    /* 1170 */     this.userDefAttr6 = userDefAttr6;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr6Label() {
    /* 1174 */     return this.userDefAttr6Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr6Label(String userDefAttr6Label) {
    /* 1178 */     this.userDefAttr6Label = userDefAttr6Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr6Attr() {
    /* 1182 */     return this.userDefAttr6Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr6Attr(Integer userDefAttr6Attr) {
    /* 1186 */     this.userDefAttr6Attr = userDefAttr6Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr7() {
    /* 1190 */     return this.userDefAttr7;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr7(String userDefAttr7) {
    /* 1194 */     this.userDefAttr7 = userDefAttr7;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr7Label() {
    /* 1198 */     return this.userDefAttr7Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr7Label(String userDefAttr7Label) {
    /* 1202 */     this.userDefAttr7Label = userDefAttr7Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr7Attr() {
    /* 1206 */     return this.userDefAttr7Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr7Attr(Integer userDefAttr7Attr) {
    /* 1210 */     this.userDefAttr7Attr = userDefAttr7Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr8() {
    /* 1214 */     return this.userDefAttr8;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr8(String userDefAttr8) {
    /* 1218 */     this.userDefAttr8 = userDefAttr8;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr8Label() {
    /* 1222 */     return this.userDefAttr8Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr8Label(String userDefAttr8Label) {
    /* 1226 */     this.userDefAttr8Label = userDefAttr8Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr8Attr() {
    /* 1230 */     return this.userDefAttr8Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr8Attr(Integer userDefAttr8Attr) {
    /* 1234 */     this.userDefAttr8Attr = userDefAttr8Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr9() {
    /* 1238 */     return this.userDefAttr9;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr9(String userDefAttr9) {
    /* 1242 */     this.userDefAttr9 = userDefAttr9;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr9Label() {
    /* 1246 */     return this.userDefAttr9Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr9Label(String userDefAttr9Label) {
    /* 1250 */     this.userDefAttr9Label = userDefAttr9Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr9Attr() {
    /* 1254 */     return this.userDefAttr9Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr9Attr(Integer userDefAttr9Attr) {
    /* 1258 */     this.userDefAttr9Attr = userDefAttr9Attr;
    /*      */   }
    /*      */   
    /*      */   public Integer getOrderQty() {
    /* 1262 */     return this.orderQty;
    /*      */   }
    /*      */   
    /*      */   public void setOrderQty(Integer orderQty) {
    /* 1266 */     this.orderQty = orderQty;
    /*      */   }
    /*      */   
    /*      */   public Integer getQtyToBePickup() {
    /* 1270 */     return this.qtyToBePickup;
    /*      */   }
    /*      */   
    /*      */   public void setQtyToBePickup(Integer qtyToBePickup) {
    /* 1274 */     this.qtyToBePickup = qtyToBePickup;
    /*      */   }
    /*      */   
    /*      */   public Integer getQtyReceived() {
    /* 1278 */     return this.qtyReceived;
    /*      */   }
    /*      */   
    /*      */   public void setQtyReceived(Integer qtyReceived) {
    /* 1282 */     this.qtyReceived = qtyReceived;
    /*      */   }
    /*      */   
    /*      */   public Integer getQtyShipped() {
    /* 1286 */     return this.qtyShipped;
    /*      */   }
    /*      */   
    /*      */   public void setQtyShipped(Integer qtyShipped) {
    /* 1290 */     this.qtyShipped = qtyShipped;
    /*      */   }
    /*      */   
    /*      */   public String getQtyUnit() {
    /* 1294 */     return this.qtyUnit;
    /*      */   }
    /*      */   
    /*      */   public void setQtyUnit(String qtyUnit) {
    /* 1298 */     this.qtyUnit = qtyUnit;
    /*      */   }
    /*      */   
    /*      */   public Date getReadyDateLoc() {
    /* 1302 */     return this.readyDateLoc;
    /*      */   }
    /*      */   
    /*      */   public void setReadyDateLoc(Date readyDateLoc) {
    /* 1306 */     this.readyDateLoc = readyDateLoc;
    /*      */   }
    /*      */   
    /*      */   public String getReadyDateTz() {
    /* 1310 */     return this.readyDateTz;
    /*      */   }
    /*      */   
    /*      */   public void setReadyDateTz(String readyDateTz) {
    /* 1314 */     this.readyDateTz = readyDateTz;
    /*      */   }
    /*      */   
    /*      */   public Date getReadyDateGMT() {
    /* 1318 */     return this.readyDateGMT;
    /*      */   }
    /*      */   
    /*      */   public void setReadyDateGMT(Date readyDateGMT) {
    /* 1322 */     this.readyDateGMT = readyDateGMT;
    /*      */   }
    /*      */   
    /*      */   public Date getMrdLoc() {
    /* 1326 */     return this.mrdLoc;
    /*      */   }
    /*      */   
    /*      */   public void setMrdLoc(Date mrdLoc) {
    /* 1330 */     this.mrdLoc = mrdLoc;
    /*      */   }
    /*      */   
    /*      */   public String getMrdTz() {
    /* 1334 */     return this.mrdTz;
    /*      */   }
    /*      */   
    /*      */   public void setMrdTz(String mrdTz) {
    /* 1338 */     this.mrdTz = mrdTz;
    /*      */   }
    /*      */   
    /*      */   public Date getMrdGMT() {
    /* 1342 */     return this.mrdGMT;
    /*      */   }
    /*      */   
    /*      */   public void setMrdGMT(Date mrdGMT) {
    /* 1346 */     this.mrdGMT = mrdGMT;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateLoc() {
    /* 1350 */     return this.createDateLoc;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateLoc(Date createDateLoc) {
    /* 1354 */     this.createDateLoc = createDateLoc;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateLocForLabel() {
    /* 1358 */     return this.createDateLocForLabel;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateLocForLabel(Date createDateLocForLabel) {
    /* 1362 */     this.createDateLocForLabel = createDateLocForLabel;
    /*      */   }
    /*      */   
    /*      */   public String getCreateServer() {
    /* 1366 */     return this.createServer;
    /*      */   }
    /*      */   
    /*      */   public void setCreateServer(String createServer) {
    /* 1370 */     this.createServer = createServer;
    /*      */   }
    /*      */   
    /*      */   public String getCreateServerForLabel() {
    /* 1374 */     return this.createServerForLabel;
    /*      */   }
    /*      */   
    /*      */   public void setCreateServerForLabel(String createServerForLabel) {
    /* 1378 */     this.createServerForLabel = createServerForLabel;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateGMT() {
    /* 1382 */     return this.createDateGMT;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateGMT(Date createDateGMT) {
    /* 1386 */     this.createDateGMT = createDateGMT;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateGMTForLabel() {
    /* 1390 */     return this.createDateGMTForLabel;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateGMTForLabel(Date createDateGMTForLabel) {
    /* 1394 */     this.createDateGMTForLabel = createDateGMTForLabel;
    /*      */   }
    /*      */   
    /*      */   public Date getTimestampGMT() {
    /* 1398 */     return this.timestampGMT;
    /*      */   }
    /*      */   
    /*      */   public void setTimestampGMT(Date timestampGMT) {
    /* 1402 */     this.timestampGMT = timestampGMT;
    /*      */   }
    /*      */   
    /*      */   public Date getTimestampGMTForLabel() {
    /* 1406 */     return this.timestampGMTForLabel;
    /*      */   }
    /*      */   
    /*      */   public void setTimestampGMTForLabel(Date timestampGMTForLabel) {
    /* 1410 */     this.timestampGMTForLabel = timestampGMTForLabel;
    /*      */   }
    /*      */   
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */   public String getBookingMainDO_bookingNo()
    /*      */   {
    /* 1423 */     return this.bookingMainDO_bookingNo;
    /*      */   }
    /*      */   
    /*      */   public void setBookingMainDO_bookingNo(String bookingMainDO_bookingNo) {
    /* 1427 */     this.bookingMainDO_bookingNo = bookingMainDO_bookingNo;
    /*      */   }
    /*      */   
    /*      */   public void setSequence(Integer sequence) {
    /* 1431 */     this.sequence = sequence;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr10() {
    /* 1435 */     return this.userDefAttr10;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr10(String userDefAttr10) {
    /* 1439 */     this.userDefAttr10 = userDefAttr10;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr10Label() {
    /* 1443 */     return this.userDefAttr10Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr10Label(String userDefAttr10Label) {
    /* 1447 */     this.userDefAttr10Label = userDefAttr10Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr10Attr() {
    /* 1451 */     return this.userDefAttr10Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr10Attr(Integer userDefAttr10Attr) {
    /* 1455 */     this.userDefAttr10Attr = userDefAttr10Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr11() {
    /* 1459 */     return this.userDefAttr11;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr11(String userDefAttr11) {
    /* 1463 */     this.userDefAttr11 = userDefAttr11;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr11Label() {
    /* 1467 */     return this.userDefAttr11Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr11Label(String userDefAttr11Label) {
    /* 1471 */     this.userDefAttr11Label = userDefAttr11Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr11Attr() {
    /* 1475 */     return this.userDefAttr11Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr11Attr(Integer userDefAttr11Attr) {
    /* 1479 */     this.userDefAttr11Attr = userDefAttr11Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr12() {
    /* 1483 */     return this.userDefAttr12;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr12(String userDefAttr12) {
    /* 1487 */     this.userDefAttr12 = userDefAttr12;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr12Label() {
    /* 1491 */     return this.userDefAttr12Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr12Label(String userDefAttr12Label) {
    /* 1495 */     this.userDefAttr12Label = userDefAttr12Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr12Attr() {
    /* 1499 */     return this.userDefAttr12Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr12Attr(Integer userDefAttr12Attr) {
    /* 1503 */     this.userDefAttr12Attr = userDefAttr12Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr13() {
    /* 1507 */     return this.userDefAttr13;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr13(String userDefAttr13) {
    /* 1511 */     this.userDefAttr13 = userDefAttr13;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr13Label() {
    /* 1515 */     return this.userDefAttr13Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr13Label(String userDefAttr13Label) {
    /* 1519 */     this.userDefAttr13Label = userDefAttr13Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr13Attr() {
    /* 1523 */     return this.userDefAttr13Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr13Attr(Integer userDefAttr13Attr) {
    /* 1527 */     this.userDefAttr13Attr = userDefAttr13Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr14() {
    /* 1531 */     return this.userDefAttr14;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr14(String userDefAttr14) {
    /* 1535 */     this.userDefAttr14 = userDefAttr14;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr14Label() {
    /* 1539 */     return this.userDefAttr14Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr14Label(String userDefAttr14Label) {
    /* 1543 */     this.userDefAttr14Label = userDefAttr14Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr14Attr() {
    /* 1547 */     return this.userDefAttr14Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr14Attr(Integer userDefAttr14Attr) {
    /* 1551 */     this.userDefAttr14Attr = userDefAttr14Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr15() {
    /* 1555 */     return this.userDefAttr15;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr15(String userDefAttr15) {
    /* 1559 */     this.userDefAttr15 = userDefAttr15;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr15Label() {
    /* 1563 */     return this.userDefAttr15Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr15Label(String userDefAttr15Label) {
    /* 1567 */     this.userDefAttr15Label = userDefAttr15Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr15Attr() {
    /* 1571 */     return this.userDefAttr15Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr15Attr(Integer userDefAttr15Attr) {
    /* 1575 */     this.userDefAttr15Attr = userDefAttr15Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUnitValCur() {
    /* 1579 */     return this.unitValCur;
    /*      */   }
    /*      */   
    /*      */   public void setUnitValCur(String unitValCur) {
    /* 1583 */     this.unitValCur = unitValCur;
    /*      */   }
    /*      */   
    /*      */   public BigDecimal getUnitVal() {
    /* 1587 */     return this.unitVal;
    /*      */   }
    /*      */   
    /*      */   public void setUnitVal(BigDecimal unitVal) {
    /* 1591 */     this.unitVal = unitVal;
    /*      */   }
    /*      */   
    /*      */   public String getRemarks() {
    /* 1595 */     return this.remarks;
    /*      */   }
    /*      */   
    /*      */   public void setRemarks(String remarks) {
    /* 1599 */     this.remarks = remarks;
    /*      */   }
    /*      */   
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */   public String getRemarksLabel()
    /*      */   {
    /* 1619 */     return this.remarksLabel;
    /*      */   }
    /*      */   
    /*      */   public void setRemarksLabel(String remarksLabel) {
    /* 1623 */     this.remarksLabel = remarksLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getRemarksAttr() {
    /* 1627 */     return this.remarksAttr;
    /*      */   }
    /*      */   
    /*      */   public void setRemarksAttr(Integer remarksAttr) {
    /* 1631 */     this.remarksAttr = remarksAttr;
    /*      */   }
    /*      */   
    /*      */   public String getPartDescInLocLan()
    /*      */   {
    /* 1636 */     return this.partDescInLocLan;
    /*      */   }
    /*      */   
    /*      */   public void setPartDescInLocLan(String partDescInLocLan)
    /*      */   {
    /* 1641 */     this.partDescInLocLan = partDescInLocLan;
    /*      */   }
    /*      */   
    /*      */   public String getPartDescInLocLanLabel()
    /*      */   {
    /* 1646 */     return this.partDescInLocLanLabel;
    /*      */   }
    /*      */   
    /*      */   public void setPartDescInLocLanLabel(String partDescInLocLanLabel)
    /*      */   {
    /* 1651 */     this.partDescInLocLanLabel = partDescInLocLanLabel;
    /*      */   }
    /*      */   
    /*      */   public Integer getPartDescInLocLanAttr()
    /*      */   {
    /* 1656 */     return this.partDescInLocLanAttr;
    /*      */   }
    /*      */   
    /*      */   public void setPartDescInLocLanAttr(Integer partDescInLocLanAttr)
    /*      */   {
    /* 1661 */     this.partDescInLocLanAttr = partDescInLocLanAttr;
    /*      */   }
    /*      */   
    /*      */   public Date getEtdForApprovalLoc()
    /*      */   {
    /* 1666 */     return this.etdForApprovalLoc;
    /*      */   }
    /*      */   
    /*      */   public void setEtdForApprovalLoc(Date etdForApprovalLoc)
    /*      */   {
    /* 1671 */     this.etdForApprovalLoc = etdForApprovalLoc;
    /*      */   }
    /*      */   
    /*      */   public String getEtdForApprovalTz()
    /*      */   {
    /* 1676 */     return this.etdForApprovalTz;
    /*      */   }
    /*      */   
    /*      */   public void setEtdForApprovalTz(String etdForApprovalTz)
    /*      */   {
    /* 1681 */     this.etdForApprovalTz = etdForApprovalTz;
    /*      */   }
    /*      */   
    /*      */   public Date getEtdForApprovalGMT()
    /*      */   {
    /* 1686 */     return this.etdForApprovalGMT;
    /*      */   }
    /*      */   
    /*      */   public void setEtdForApprovalGMT(Date etdForApprovalGMT)
    /*      */   {
    /* 1691 */     this.etdForApprovalGMT = etdForApprovalGMT;
    /*      */   }
    /*      */   
    /*      */   public Date getEtaForApprovalLoc()
    /*      */   {
    /* 1696 */     return this.etaForApprovalLoc;
    /*      */   }
    /*      */   
    /*      */   public void setEtaForApprovalLoc(Date etaForApprovalLoc)
    /*      */   {
    /* 1701 */     this.etaForApprovalLoc = etaForApprovalLoc;
    /*      */   }
    /*      */   
    /*      */   public String getEtaForApprovalTz()
    /*      */   {
    /* 1706 */     return this.etaForApprovalTz;
    /*      */   }
    /*      */   
    /*      */   public void setEtaForApprovalTz(String etaForApprovalTz)
    /*      */   {
    /* 1711 */     this.etaForApprovalTz = etaForApprovalTz;
    /*      */   }
    /*      */   
    /*      */   public Date getEtaForApprovalGMT()
    /*      */   {
    /* 1716 */     return this.etaForApprovalGMT;
    /*      */   }
    /*      */   
    /*      */   public void setEtaForApprovalGMT(Date etaForApprovalGMT)
    /*      */   {
    /* 1721 */     this.etaForApprovalGMT = etaForApprovalGMT;
    /*      */   }
    /*      */   
    /*      */   public Date getCfsCutOffDateForApprovalLoc()
    /*      */   {
    /* 1726 */     return this.cfsCutOffDateForApprovalLoc;
    /*      */   }
    /*      */   
    /*      */   public void setCfsCutOffDateForApprovalLoc(Date cfsCutOffDateForApprovalLoc)
    /*      */   {
    /* 1731 */     this.cfsCutOffDateForApprovalLoc = cfsCutOffDateForApprovalLoc;
    /*      */   }
    /*      */   
    /*      */   public String getCfsCutOffDateForApprovalTz()
    /*      */   {
    /* 1736 */     return this.cfsCutOffDateForApprovalTz;
    /*      */   }
    /*      */   
    /*      */   public void setCfsCutOffDateForApprovalTz(String cfsCutOffDateForApprovalTz)
    /*      */   {
    /* 1741 */     this.cfsCutOffDateForApprovalTz = cfsCutOffDateForApprovalTz;
    /*      */   }
    /*      */   
    /*      */   public Date getCfsCutOffDateForApprovalGMT()
    /*      */   {
    /* 1746 */     return this.cfsCutOffDateForApprovalGMT;
    /*      */   }
    /*      */   
    /*      */   public void setCfsCutOffDateForApprovalGMT(Date cfsCutOffDateForApprovalGMT)
    /*      */   {
    /* 1751 */     this.cfsCutOffDateForApprovalGMT = cfsCutOffDateForApprovalGMT;
    /*      */   }
    /*      */   
    /*      */   public Date getCyCutOffDateForApprovalLoc()
    /*      */   {
    /* 1756 */     return this.cyCutOffDateForApprovalLoc;
    /*      */   }
    /*      */   
    /*      */   public void setCyCutOffDateForApprovalLoc(Date cyCutOffDateForApprovalLoc)
    /*      */   {
    /* 1761 */     this.cyCutOffDateForApprovalLoc = cyCutOffDateForApprovalLoc;
    /*      */   }
    /*      */   
    /*      */   public String getCyCutOffDateForApprovalTz()
    /*      */   {
    /* 1766 */     return this.cyCutOffDateForApprovalTz;
    /*      */   }
    /*      */   
    /*      */   public void setCyCutOffDateForApprovalTz(String cyCutOffDateForApprovalTz)
    /*      */   {
    /* 1771 */     this.cyCutOffDateForApprovalTz = cyCutOffDateForApprovalTz;
    /*      */   }
    /*      */   
    /*      */   public Date getCyCutOffDateForApprovalGMT()
    /*      */   {
    /* 1776 */     return this.cyCutOffDateForApprovalGMT;
    /*      */   }
    /*      */   
    /*      */   public void setCyCutOffDateForApprovalGMT(Date cyCutOffDateForApprovalGMT)
    /*      */   {
    /* 1781 */     this.cyCutOffDateForApprovalGMT = cyCutOffDateForApprovalGMT;
    /*      */   }
    /*      */   
    /*      */   public String getIsApproved()
    /*      */   {
    /* 1786 */     return this.isApproved;
    /*      */   }
    /*      */   
    /*      */   public void setIsApproved(String isApproved)
    /*      */   {
    /* 1791 */     this.isApproved = isApproved;
    /*      */   }
    /*      */   
    /*      */   public String getRemarksForApprov()
    /*      */   {
    /* 1796 */     return this.remarksForApprov;
    /*      */   }
    /*      */   
    /*      */   public void setRemarksForApprov(String remarksForApprov)
    /*      */   {
    /* 1801 */     this.remarksForApprov = remarksForApprov;
    /*      */   }
    /*      */   
    /*      */   public String getSuggestedAction()
    /*      */   {
    /* 1806 */     return this.suggestedAction;
    /*      */   }
    /*      */   
    /*      */   public void setSuggestedAction(String suggestedAction)
    /*      */   {
    /* 1811 */     this.suggestedAction = suggestedAction;
    /*      */   }
    /*      */   
    /*      */   public String getApprovalBy()
    /*      */   {
    /* 1816 */     return this.approvalBy;
    /*      */   }
    /*      */   
    /*      */   public void setApprovalBy(String approvalBy)
    /*      */   {
    /* 1821 */     this.approvalBy = approvalBy;
    /*      */   }
    /*      */   
    /*      */   public Date getApprovalDateLoc()
    /*      */   {
    /* 1826 */     return this.approvalDateLoc;
    /*      */   }
    /*      */   
    /*      */   public void setApprovalDateLoc(Date approvalDateLoc)
    /*      */   {
    /* 1831 */     this.approvalDateLoc = approvalDateLoc;
    /*      */   }
    /*      */   
    /*      */   public String getApprovalDateTz()
    /*      */   {
    /* 1836 */     return this.approvalDateTz;
    /*      */   }
    /*      */   
    /*      */   public void setApprovalDateTz(String approvalDateTz)
    /*      */   {
    /* 1841 */     this.approvalDateTz = approvalDateTz;
    /*      */   }
    /*      */   
    /*      */   public Date getApprovalDateGMT()
    /*      */   {
    /* 1846 */     return this.approvalDateGMT;
    /*      */   }
    /*      */   
    /*      */   public void setApprovalDateGMT(Date approvalDateGMT)
    /*      */   {
    /* 1851 */     this.approvalDateGMT = approvalDateGMT;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr16()
    /*      */   {
    /* 1856 */     return this.userDefAttr16;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr16(String userDefAttr16)
    /*      */   {
    /* 1861 */     this.userDefAttr16 = userDefAttr16;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr16Label()
    /*      */   {
    /* 1866 */     return this.userDefAttr16Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr16Label(String userDefAttr16Label)
    /*      */   {
    /* 1871 */     this.userDefAttr16Label = userDefAttr16Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr16Attr()
    /*      */   {
    /* 1876 */     return this.userDefAttr16Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr16Attr(Integer userDefAttr16Attr)
    /*      */   {
    /* 1881 */     this.userDefAttr16Attr = userDefAttr16Attr;
    /*      */   }
    /*      */   
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */   public String getUserDefAttr17()
    /*      */   {
    /* 1897 */     return this.userDefAttr17;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr17(String userDefAttr17)
    /*      */   {
    /* 1902 */     this.userDefAttr17 = userDefAttr17;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr17Label()
    /*      */   {
    /* 1907 */     return this.userDefAttr17Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr17Label(String userDefAttr17Label)
    /*      */   {
    /* 1912 */     this.userDefAttr17Label = userDefAttr17Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr17Attr()
    /*      */   {
    /* 1917 */     return this.userDefAttr17Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr17Attr(Integer userDefAttr17Attr)
    /*      */   {
    /* 1922 */     this.userDefAttr17Attr = userDefAttr17Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr18()
    /*      */   {
    /* 1927 */     return this.userDefAttr18;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr18(String userDefAttr18)
    /*      */   {
    /* 1932 */     this.userDefAttr18 = userDefAttr18;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr18Label()
    /*      */   {
    /* 1937 */     return this.userDefAttr18Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr18Label(String userDefAttr18Label)
    /*      */   {
    /* 1942 */     this.userDefAttr18Label = userDefAttr18Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr18Attr()
    /*      */   {
    /* 1947 */     return this.userDefAttr18Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr18Attr(Integer userDefAttr18Attr)
    /*      */   {
    /* 1952 */     this.userDefAttr18Attr = userDefAttr18Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr19()
    /*      */   {
    /* 1957 */     return this.userDefAttr19;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr19(String userDefAttr19)
    /*      */   {
    /* 1962 */     this.userDefAttr19 = userDefAttr19;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr19Label()
    /*      */   {
    /* 1967 */     return this.userDefAttr19Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr19Label(String userDefAttr19Label)
    /*      */   {
    /* 1972 */     this.userDefAttr19Label = userDefAttr19Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr19Attr()
    /*      */   {
    /* 1977 */     return this.userDefAttr19Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr19Attr(Integer userDefAttr19Attr)
    /*      */   {
    /* 1982 */     this.userDefAttr19Attr = userDefAttr19Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr20()
    /*      */   {
    /* 1987 */     return this.userDefAttr20;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr20(String userDefAttr20)
    /*      */   {
    /* 1992 */     this.userDefAttr20 = userDefAttr20;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr20Label()
    /*      */   {
    /* 1997 */     return this.userDefAttr20Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr20Label(String userDefAttr20Label)
    /*      */   {
    /* 2002 */     this.userDefAttr20Label = userDefAttr20Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr20Attr()
    /*      */   {
    /* 2007 */     return this.userDefAttr20Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr20Attr(Integer userDefAttr20Attr)
    /*      */   {
    /* 2012 */     this.userDefAttr20Attr = userDefAttr20Attr;
    /*      */   }
    /*      */   
    /*      */   public void setApprovalSeq(Integer approvalSeq)
    /*      */   {
    /* 2017 */     this.approvalSeq = approvalSeq;
    /*      */   }
    /*      */   
    /*      */   public Integer getApprovalSeq()
    /*      */   {
    /* 2022 */     return this.approvalSeq;
    /*      */   }
    /*      */   
    /*      */   public void setApprovalTimestampGMT(Date approvalTimestampGMT)
    /*      */   {
    /* 2027 */     this.approvalTimestampGMT = approvalTimestampGMT;
    /*      */   }
    /*      */   
    /*      */   public Date getApprovalTimestampGMT()
    /*      */   {
    /* 2032 */     return this.approvalTimestampGMT;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateLocForApproval(Date createDateLocForApproval)
    /*      */   {
    /* 2037 */     this.createDateLocForApproval = createDateLocForApproval;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateLocForApproval()
    /*      */   {
    /* 2042 */     return this.createDateLocForApproval;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateGMTForApproval(Date createDateGMTForApproval)
    /*      */   {
    /* 2047 */     this.createDateGMTForApproval = createDateGMTForApproval;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateGMTForApproval()
    /*      */   {
    /* 2052 */     return this.createDateGMTForApproval;
    /*      */   }
    /*      */   
    /*      */   public void setCreateServerForApproval(String createServerForApproval)
    /*      */   {
    /* 2057 */     this.createServerForApproval = createServerForApproval;
    /*      */   }
    /*      */   
    /*      */   public String getCreateServerForApproval()
    /*      */   {
    /* 2062 */     return this.createServerForApproval;
    /*      */   }
    /*      */   
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */ 
    /*      */   public void setUserDefAttr21(String userDefAttr21)
    /*      */   {
    /* 2076 */     this.userDefAttr21 = userDefAttr21;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr21()
    /*      */   {
    /* 2081 */     return this.userDefAttr21;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr21Label(String userDefAttr21Label)
    /*      */   {
    /* 2086 */     this.userDefAttr21Label = userDefAttr21Label;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr21Label()
    /*      */   {
    /* 2091 */     return this.userDefAttr21Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr21Attr(Integer userDefAttr21Attr)
    /*      */   {
    /* 2096 */     this.userDefAttr21Attr = userDefAttr21Attr;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr21Attr()
    /*      */   {
    /* 2101 */     return this.userDefAttr21Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr22(String userDefAttr22)
    /*      */   {
    /* 2106 */     this.userDefAttr22 = userDefAttr22;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr22()
    /*      */   {
    /* 2111 */     return this.userDefAttr22;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr22Label(String userDefAttr22Label)
    /*      */   {
    /* 2116 */     this.userDefAttr22Label = userDefAttr22Label;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttr22Label()
    /*      */   {
    /* 2121 */     return this.userDefAttr22Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttr22Attr(Integer userDefAttr22Attr)
    /*      */   {
    /* 2126 */     this.userDefAttr22Attr = userDefAttr22Attr;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttr22Attr()
    /*      */   {
    /* 2131 */     return this.userDefAttr22Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup1()
    /*      */   {
    /* 2136 */     return this.userDefAttrSup1;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup1(String userDefAttrSup1)
    /*      */   {
    /* 2141 */     this.userDefAttrSup1 = userDefAttrSup1;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup1Label()
    /*      */   {
    /* 2146 */     return this.userDefAttrSup1Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup1Label(String userDefAttrSup1Label)
    /*      */   {
    /* 2151 */     this.userDefAttrSup1Label = userDefAttrSup1Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup1Attr()
    /*      */   {
    /* 2156 */     return this.userDefAttrSup1Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup1Attr(Integer userDefAttrSup1Attr)
    /*      */   {
    /* 2161 */     this.userDefAttrSup1Attr = userDefAttrSup1Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup2()
    /*      */   {
    /* 2166 */     return this.userDefAttrSup2;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup2(String userDefAttrSup2)
    /*      */   {
    /* 2171 */     this.userDefAttrSup2 = userDefAttrSup2;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup2Label()
    /*      */   {
    /* 2176 */     return this.userDefAttrSup2Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup2Label(String userDefAttrSup2Label)
    /*      */   {
    /* 2181 */     this.userDefAttrSup2Label = userDefAttrSup2Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup2Attr()
    /*      */   {
    /* 2186 */     return this.userDefAttrSup2Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup2Attr(Integer userDefAttrSup2Attr)
    /*      */   {
    /* 2191 */     this.userDefAttrSup2Attr = userDefAttrSup2Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup3()
    /*      */   {
    /* 2196 */     return this.userDefAttrSup3;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup3(String userDefAttrSup3)
    /*      */   {
    /* 2201 */     this.userDefAttrSup3 = userDefAttrSup3;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup3Label()
    /*      */   {
    /* 2206 */     return this.userDefAttrSup3Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup3Label(String userDefAttrSup3Label)
    /*      */   {
    /* 2211 */     this.userDefAttrSup3Label = userDefAttrSup3Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup3Attr()
    /*      */   {
    /* 2216 */     return this.userDefAttrSup3Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup3Attr(Integer userDefAttrSup3Attr)
    /*      */   {
    /* 2221 */     this.userDefAttrSup3Attr = userDefAttrSup3Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup4()
    /*      */   {
    /* 2226 */     return this.userDefAttrSup4;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup4(String userDefAttrSup4)
    /*      */   {
    /* 2231 */     this.userDefAttrSup4 = userDefAttrSup4;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup4Label()
    /*      */   {
    /* 2236 */     return this.userDefAttrSup4Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup4Label(String userDefAttrSup4Label)
    /*      */   {
    /* 2241 */     this.userDefAttrSup4Label = userDefAttrSup4Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup4Attr()
    /*      */   {
    /* 2246 */     return this.userDefAttrSup4Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup4Attr(Integer userDefAttrSup4Attr)
    /*      */   {
    /* 2251 */     this.userDefAttrSup4Attr = userDefAttrSup4Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup5()
    /*      */   {
    /* 2256 */     return this.userDefAttrSup5;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup5(String userDefAttrSup5)
    /*      */   {
    /* 2261 */     this.userDefAttrSup5 = userDefAttrSup5;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup5Label()
    /*      */   {
    /* 2266 */     return this.userDefAttrSup5Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup5Label(String userDefAttrSup5Label)
    /*      */   {
    /* 2271 */     this.userDefAttrSup5Label = userDefAttrSup5Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup5Attr()
    /*      */   {
    /* 2276 */     return this.userDefAttrSup5Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup5Attr(Integer userDefAttrSup5Attr)
    /*      */   {
    /* 2281 */     this.userDefAttrSup5Attr = userDefAttrSup5Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup6()
    /*      */   {
    /* 2286 */     return this.userDefAttrSup6;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup6(String userDefAttrSup6)
    /*      */   {
    /* 2291 */     this.userDefAttrSup6 = userDefAttrSup6;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup6Label()
    /*      */   {
    /* 2296 */     return this.userDefAttrSup6Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup6Label(String userDefAttrSup6Label)
    /*      */   {
    /* 2301 */     this.userDefAttrSup6Label = userDefAttrSup6Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup6Attr()
    /*      */   {
    /* 2306 */     return this.userDefAttrSup6Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup6Attr(Integer userDefAttrSup6Attr)
    /*      */   {
    /* 2311 */     this.userDefAttrSup6Attr = userDefAttrSup6Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup7()
    /*      */   {
    /* 2316 */     return this.userDefAttrSup7;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup7(String userDefAttrSup7)
    /*      */   {
    /* 2321 */     this.userDefAttrSup7 = userDefAttrSup7;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup7Label()
    /*      */   {
    /* 2326 */     return this.userDefAttrSup7Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup7Label(String userDefAttrSup7Label)
    /*      */   {
    /* 2331 */     this.userDefAttrSup7Label = userDefAttrSup7Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup7Attr()
    /*      */   {
    /* 2336 */     return this.userDefAttrSup7Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup7Attr(Integer userDefAttrSup7Attr)
    /*      */   {
    /* 2341 */     this.userDefAttrSup7Attr = userDefAttrSup7Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup8()
    /*      */   {
    /* 2346 */     return this.userDefAttrSup8;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup8(String userDefAttrSup8)
    /*      */   {
    /* 2351 */     this.userDefAttrSup8 = userDefAttrSup8;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup8Label()
    /*      */   {
    /* 2356 */     return this.userDefAttrSup8Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup8Label(String userDefAttrSup8Label)
    /*      */   {
    /* 2361 */     this.userDefAttrSup8Label = userDefAttrSup8Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup8Attr()
    /*      */   {
    /* 2366 */     return this.userDefAttrSup8Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup8Attr(Integer userDefAttrSup8Attr)
    /*      */   {
    /* 2371 */     this.userDefAttrSup8Attr = userDefAttrSup8Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup9()
    /*      */   {
    /* 2376 */     return this.userDefAttrSup9;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup9(String userDefAttrSup9)
    /*      */   {
    /* 2381 */     this.userDefAttrSup9 = userDefAttrSup9;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup9Label()
    /*      */   {
    /* 2386 */     return this.userDefAttrSup9Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup9Label(String userDefAttrSup9Label)
    /*      */   {
    /* 2391 */     this.userDefAttrSup9Label = userDefAttrSup9Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup9Attr()
    /*      */   {
    /* 2396 */     return this.userDefAttrSup9Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup9Attr(Integer userDefAttrSup9Attr)
    /*      */   {
    /* 2401 */     this.userDefAttrSup9Attr = userDefAttrSup9Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup10()
    /*      */   {
    /* 2406 */     return this.userDefAttrSup10;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup10(String userDefAttrSup10)
    /*      */   {
    /* 2411 */     this.userDefAttrSup10 = userDefAttrSup10;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup10Label()
    /*      */   {
    /* 2416 */     return this.userDefAttrSup10Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup10Label(String userDefAttrSup10Label)
    /*      */   {
    /* 2421 */     this.userDefAttrSup10Label = userDefAttrSup10Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup10Attr()
    /*      */   {
    /* 2426 */     return this.userDefAttrSup10Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup10Attr(Integer userDefAttrSup10Attr)
    /*      */   {
    /* 2431 */     this.userDefAttrSup10Attr = userDefAttrSup10Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup11()
    /*      */   {
    /* 2436 */     return this.userDefAttrSup11;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup11(String userDefAttrSup11)
    /*      */   {
    /* 2441 */     this.userDefAttrSup11 = userDefAttrSup11;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup11Label()
    /*      */   {
    /* 2446 */     return this.userDefAttrSup11Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup11Label(String userDefAttrSup11Label)
    /*      */   {
    /* 2451 */     this.userDefAttrSup11Label = userDefAttrSup11Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup11Attr()
    /*      */   {
    /* 2456 */     return this.userDefAttrSup11Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup11Attr(Integer userDefAttrSup11Attr)
    /*      */   {
    /* 2461 */     this.userDefAttrSup11Attr = userDefAttrSup11Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup12()
    /*      */   {
    /* 2466 */     return this.userDefAttrSup12;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup12(String userDefAttrSup12)
    /*      */   {
    /* 2471 */     this.userDefAttrSup12 = userDefAttrSup12;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup12Label()
    /*      */   {
    /* 2476 */     return this.userDefAttrSup12Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup12Label(String userDefAttrSup12Label)
    /*      */   {
    /* 2481 */     this.userDefAttrSup12Label = userDefAttrSup12Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup12Attr()
    /*      */   {
    /* 2486 */     return this.userDefAttrSup12Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup12Attr(Integer userDefAttrSup12Attr)
    /*      */   {
    /* 2491 */     this.userDefAttrSup12Attr = userDefAttrSup12Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup13()
    /*      */   {
    /* 2496 */     return this.userDefAttrSup13;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup13(String userDefAttrSup13)
    /*      */   {
    /* 2501 */     this.userDefAttrSup13 = userDefAttrSup13;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup13Label()
    /*      */   {
    /* 2506 */     return this.userDefAttrSup13Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup13Label(String userDefAttrSup13Label)
    /*      */   {
    /* 2511 */     this.userDefAttrSup13Label = userDefAttrSup13Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup13Attr()
    /*      */   {
    /* 2516 */     return this.userDefAttrSup13Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup13Attr(Integer userDefAttrSup13Attr)
    /*      */   {
    /* 2521 */     this.userDefAttrSup13Attr = userDefAttrSup13Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup14()
    /*      */   {
    /* 2526 */     return this.userDefAttrSup14;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup14(String userDefAttrSup14)
    /*      */   {
    /* 2531 */     this.userDefAttrSup14 = userDefAttrSup14;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup14Label()
    /*      */   {
    /* 2536 */     return this.userDefAttrSup14Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup14Label(String userDefAttrSup14Label)
    /*      */   {
    /* 2541 */     this.userDefAttrSup14Label = userDefAttrSup14Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup14Attr()
    /*      */   {
    /* 2546 */     return this.userDefAttrSup14Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup14Attr(Integer userDefAttrSup14Attr)
    /*      */   {
    /* 2551 */     this.userDefAttrSup14Attr = userDefAttrSup14Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup15()
    /*      */   {
    /* 2556 */     return this.userDefAttrSup15;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup15(String userDefAttrSup15)
    /*      */   {
    /* 2561 */     this.userDefAttrSup15 = userDefAttrSup15;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup15Label()
    /*      */   {
    /* 2566 */     return this.userDefAttrSup15Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup15Label(String userDefAttrSup15Label)
    /*      */   {
    /* 2571 */     this.userDefAttrSup15Label = userDefAttrSup15Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup15Attr()
    /*      */   {
    /* 2576 */     return this.userDefAttrSup15Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup15Attr(Integer userDefAttrSup15Attr)
    /*      */   {
    /* 2581 */     this.userDefAttrSup15Attr = userDefAttrSup15Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup16()
    /*      */   {
    /* 2586 */     return this.userDefAttrSup16;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup16(String userDefAttrSup16)
    /*      */   {
    /* 2591 */     this.userDefAttrSup16 = userDefAttrSup16;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup16Label()
    /*      */   {
    /* 2596 */     return this.userDefAttrSup16Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup16Label(String userDefAttrSup16Label)
    /*      */   {
    /* 2601 */     this.userDefAttrSup16Label = userDefAttrSup16Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup16Attr()
    /*      */   {
    /* 2606 */     return this.userDefAttrSup16Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup16Attr(Integer userDefAttrSup16Attr)
    /*      */   {
    /* 2611 */     this.userDefAttrSup16Attr = userDefAttrSup16Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup17()
    /*      */   {
    /* 2616 */     return this.userDefAttrSup17;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup17(String userDefAttrSup17)
    /*      */   {
    /* 2621 */     this.userDefAttrSup17 = userDefAttrSup17;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup17Label()
    /*      */   {
    /* 2626 */     return this.userDefAttrSup17Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup17Label(String userDefAttrSup17Label)
    /*      */   {
    /* 2631 */     this.userDefAttrSup17Label = userDefAttrSup17Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup17Attr()
    /*      */   {
    /* 2636 */     return this.userDefAttrSup17Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup17Attr(Integer userDefAttrSup17Attr)
    /*      */   {
    /* 2641 */     this.userDefAttrSup17Attr = userDefAttrSup17Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup18()
    /*      */   {
    /* 2646 */     return this.userDefAttrSup18;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup18(String userDefAttrSup18)
    /*      */   {
    /* 2651 */     this.userDefAttrSup18 = userDefAttrSup18;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup18Label()
    /*      */   {
    /* 2656 */     return this.userDefAttrSup18Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup18Label(String userDefAttrSup18Label)
    /*      */   {
    /* 2661 */     this.userDefAttrSup18Label = userDefAttrSup18Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup18Attr()
    /*      */   {
    /* 2666 */     return this.userDefAttrSup18Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup18Attr(Integer userDefAttrSup18Attr)
    /*      */   {
    /* 2671 */     this.userDefAttrSup18Attr = userDefAttrSup18Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup19()
    /*      */   {
    /* 2676 */     return this.userDefAttrSup19;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup19(String userDefAttrSup19)
    /*      */   {
    /* 2681 */     this.userDefAttrSup19 = userDefAttrSup19;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup19Label()
    /*      */   {
    /* 2686 */     return this.userDefAttrSup19Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup19Label(String userDefAttrSup19Label)
    /*      */   {
    /* 2691 */     this.userDefAttrSup19Label = userDefAttrSup19Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup19Attr()
    /*      */   {
    /* 2696 */     return this.userDefAttrSup19Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup19Attr(Integer userDefAttrSup19Attr)
    /*      */   {
    /* 2701 */     this.userDefAttrSup19Attr = userDefAttrSup19Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup20()
    /*      */   {
    /* 2706 */     return this.userDefAttrSup20;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup20(String userDefAttrSup20)
    /*      */   {
    /* 2711 */     this.userDefAttrSup20 = userDefAttrSup20;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup20Label()
    /*      */   {
    /* 2716 */     return this.userDefAttrSup20Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup20Label(String userDefAttrSup20Label)
    /*      */   {
    /* 2721 */     this.userDefAttrSup20Label = userDefAttrSup20Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup20Attr()
    /*      */   {
    /* 2726 */     return this.userDefAttrSup20Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup20Attr(Integer userDefAttrSup20Attr)
    /*      */   {
    /* 2731 */     this.userDefAttrSup20Attr = userDefAttrSup20Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup21()
    /*      */   {
    /* 2736 */     return this.userDefAttrSup21;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup21(String userDefAttrSup21)
    /*      */   {
    /* 2741 */     this.userDefAttrSup21 = userDefAttrSup21;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup21Label()
    /*      */   {
    /* 2746 */     return this.userDefAttrSup21Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup21Label(String userDefAttrSup21Label)
    /*      */   {
    /* 2751 */     this.userDefAttrSup21Label = userDefAttrSup21Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup21Attr()
    /*      */   {
    /* 2756 */     return this.userDefAttrSup21Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup21Attr(Integer userDefAttrSup21Attr)
    /*      */   {
    /* 2761 */     this.userDefAttrSup21Attr = userDefAttrSup21Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup22()
    /*      */   {
    /* 2766 */     return this.userDefAttrSup22;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup22(String userDefAttrSup22)
    /*      */   {
    /* 2771 */     this.userDefAttrSup22 = userDefAttrSup22;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup22Label()
    /*      */   {
    /* 2776 */     return this.userDefAttrSup22Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup22Label(String userDefAttrSup22Label)
    /*      */   {
    /* 2781 */     this.userDefAttrSup22Label = userDefAttrSup22Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup22Attr()
    /*      */   {
    /* 2786 */     return this.userDefAttrSup22Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup22Attr(Integer userDefAttrSup22Attr)
    /*      */   {
    /* 2791 */     this.userDefAttrSup22Attr = userDefAttrSup22Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup23()
    /*      */   {
    /* 2796 */     return this.userDefAttrSup23;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup23(String userDefAttrSup23)
    /*      */   {
    /* 2801 */     this.userDefAttrSup23 = userDefAttrSup23;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup23Label()
    /*      */   {
    /* 2806 */     return this.userDefAttrSup23Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup23Label(String userDefAttrSup23Label)
    /*      */   {
    /* 2811 */     this.userDefAttrSup23Label = userDefAttrSup23Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup23Attr()
    /*      */   {
    /* 2816 */     return this.userDefAttrSup23Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup23Attr(Integer userDefAttrSup23Attr)
    /*      */   {
    /* 2821 */     this.userDefAttrSup23Attr = userDefAttrSup23Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup24()
    /*      */   {
    /* 2826 */     return this.userDefAttrSup24;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup24(String userDefAttrSup24)
    /*      */   {
    /* 2831 */     this.userDefAttrSup24 = userDefAttrSup24;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup24Label()
    /*      */   {
    /* 2836 */     return this.userDefAttrSup24Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup24Label(String userDefAttrSup24Label)
    /*      */   {
    /* 2841 */     this.userDefAttrSup24Label = userDefAttrSup24Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup24Attr()
    /*      */   {
    /* 2846 */     return this.userDefAttrSup24Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup24Attr(Integer userDefAttrSup24Attr)
    /*      */   {
    /* 2851 */     this.userDefAttrSup24Attr = userDefAttrSup24Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup25()
    /*      */   {
    /* 2856 */     return this.userDefAttrSup25;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup25(String userDefAttrSup25)
    /*      */   {
    /* 2861 */     this.userDefAttrSup25 = userDefAttrSup25;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup25Label()
    /*      */   {
    /* 2866 */     return this.userDefAttrSup25Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup25Label(String userDefAttrSup25Label)
    /*      */   {
    /* 2871 */     this.userDefAttrSup25Label = userDefAttrSup25Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup25Attr()
    /*      */   {
    /* 2876 */     return this.userDefAttrSup25Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup25Attr(Integer userDefAttrSup25Attr)
    /*      */   {
    /* 2881 */     this.userDefAttrSup25Attr = userDefAttrSup25Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup26()
    /*      */   {
    /* 2886 */     return this.userDefAttrSup26;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup26(String userDefAttrSup26)
    /*      */   {
    /* 2891 */     this.userDefAttrSup26 = userDefAttrSup26;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup26Label()
    /*      */   {
    /* 2896 */     return this.userDefAttrSup26Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup26Label(String userDefAttrSup26Label)
    /*      */   {
    /* 2901 */     this.userDefAttrSup26Label = userDefAttrSup26Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup26Attr()
    /*      */   {
    /* 2906 */     return this.userDefAttrSup26Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup26Attr(Integer userDefAttrSup26Attr)
    /*      */   {
    /* 2911 */     this.userDefAttrSup26Attr = userDefAttrSup26Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup27()
    /*      */   {
    /* 2916 */     return this.userDefAttrSup27;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup27(String userDefAttrSup27)
    /*      */   {
    /* 2921 */     this.userDefAttrSup27 = userDefAttrSup27;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup27Label()
    /*      */   {
    /* 2926 */     return this.userDefAttrSup27Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup27Label(String userDefAttrSup27Label)
    /*      */   {
    /* 2931 */     this.userDefAttrSup27Label = userDefAttrSup27Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup27Attr()
    /*      */   {
    /* 2936 */     return this.userDefAttrSup27Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup27Attr(Integer userDefAttrSup27Attr)
    /*      */   {
    /* 2941 */     this.userDefAttrSup27Attr = userDefAttrSup27Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup28()
    /*      */   {
    /* 2946 */     return this.userDefAttrSup28;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup28(String userDefAttrSup28)
    /*      */   {
    /* 2951 */     this.userDefAttrSup28 = userDefAttrSup28;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup28Label()
    /*      */   {
    /* 2956 */     return this.userDefAttrSup28Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup28Label(String userDefAttrSup28Label)
    /*      */   {
    /* 2961 */     this.userDefAttrSup28Label = userDefAttrSup28Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup28Attr()
    /*      */   {
    /* 2966 */     return this.userDefAttrSup28Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup28Attr(Integer userDefAttrSup28Attr)
    /*      */   {
    /* 2971 */     this.userDefAttrSup28Attr = userDefAttrSup28Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup29()
    /*      */   {
    /* 2976 */     return this.userDefAttrSup29;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup29(String userDefAttrSup29)
    /*      */   {
    /* 2981 */     this.userDefAttrSup29 = userDefAttrSup29;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup29Label()
    /*      */   {
    /* 2986 */     return this.userDefAttrSup29Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup29Label(String userDefAttrSup29Label)
    /*      */   {
    /* 2991 */     this.userDefAttrSup29Label = userDefAttrSup29Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup29Attr()
    /*      */   {
    /* 2996 */     return this.userDefAttrSup29Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup29Attr(Integer userDefAttrSup29Attr)
    /*      */   {
    /* 3001 */     this.userDefAttrSup29Attr = userDefAttrSup29Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup30()
    /*      */   {
    /* 3006 */     return this.userDefAttrSup30;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup30(String userDefAttrSup30)
    /*      */   {
    /* 3011 */     this.userDefAttrSup30 = userDefAttrSup30;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup31() {
    /* 3015 */     return this.userDefAttrSup31;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup31(String userDefAttrSup31)
    /*      */   {
    /* 3020 */     this.userDefAttrSup31 = userDefAttrSup31;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup31Label()
    /*      */   {
    /* 3025 */     return this.userDefAttrSup31Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup31Label(String userDefAttrSup31Label)
    /*      */   {
    /* 3030 */     this.userDefAttrSup31Label = userDefAttrSup31Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup31Attr()
    /*      */   {
    /* 3035 */     return this.userDefAttrSup31Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup31Attr(Integer userDefAttrSup31Attr)
    /*      */   {
    /* 3040 */     this.userDefAttrSup31Attr = userDefAttrSup31Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup32()
    /*      */   {
    /* 3045 */     return this.userDefAttrSup32;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup32(String userDefAttrSup32)
    /*      */   {
    /* 3050 */     this.userDefAttrSup32 = userDefAttrSup32;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup32Label()
    /*      */   {
    /* 3055 */     return this.userDefAttrSup32Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup32Label(String userDefAttrSup32Label)
    /*      */   {
    /* 3060 */     this.userDefAttrSup32Label = userDefAttrSup32Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup32Attr()
    /*      */   {
    /* 3065 */     return this.userDefAttrSup32Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup32Attr(Integer userDefAttrSup32Attr)
    /*      */   {
    /* 3070 */     this.userDefAttrSup32Attr = userDefAttrSup32Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup33()
    /*      */   {
    /* 3075 */     return this.userDefAttrSup33;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup33(String userDefAttrSup33)
    /*      */   {
    /* 3080 */     this.userDefAttrSup33 = userDefAttrSup33;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup33Label()
    /*      */   {
    /* 3085 */     return this.userDefAttrSup33Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup33Label(String userDefAttrSup33Label)
    /*      */   {
    /* 3090 */     this.userDefAttrSup33Label = userDefAttrSup33Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup33Attr()
    /*      */   {
    /* 3095 */     return this.userDefAttrSup33Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup33Attr(Integer userDefAttrSup33Attr)
    /*      */   {
    /* 3100 */     this.userDefAttrSup33Attr = userDefAttrSup33Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup34()
    /*      */   {
    /* 3105 */     return this.userDefAttrSup34;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup34(String userDefAttrSup34)
    /*      */   {
    /* 3110 */     this.userDefAttrSup34 = userDefAttrSup34;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup34Label()
    /*      */   {
    /* 3115 */     return this.userDefAttrSup34Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup34Label(String userDefAttrSup34Label)
    /*      */   {
    /* 3120 */     this.userDefAttrSup34Label = userDefAttrSup34Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup34Attr()
    /*      */   {
    /* 3125 */     return this.userDefAttrSup34Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup34Attr(Integer userDefAttrSup34Attr)
    /*      */   {
    /* 3130 */     this.userDefAttrSup34Attr = userDefAttrSup34Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup35()
    /*      */   {
    /* 3135 */     return this.userDefAttrSup35;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup35(String userDefAttrSup35)
    /*      */   {
    /* 3140 */     this.userDefAttrSup35 = userDefAttrSup35;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup35Label()
    /*      */   {
    /* 3145 */     return this.userDefAttrSup35Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup35Label(String userDefAttrSup35Label)
    /*      */   {
    /* 3150 */     this.userDefAttrSup35Label = userDefAttrSup35Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup35Attr()
    /*      */   {
    /* 3155 */     return this.userDefAttrSup35Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup35Attr(Integer userDefAttrSup35Attr)
    /*      */   {
    /* 3160 */     this.userDefAttrSup35Attr = userDefAttrSup35Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup30Label()
    /*      */   {
    /* 3165 */     return this.userDefAttrSup30Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup30Label(String userDefAttrSup30Label)
    /*      */   {
    /* 3170 */     this.userDefAttrSup30Label = userDefAttrSup30Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup30Attr()
    /*      */   {
    /* 3175 */     return this.userDefAttrSup30Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup30Attr(Integer userDefAttrSup30Attr)
    /*      */   {
    /* 3180 */     this.userDefAttrSup30Attr = userDefAttrSup30Attr;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateLocSup()
    /*      */   {
    /* 3185 */     return this.createDateLocSup;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateLocSup(Date createDateLocSup)
    /*      */   {
    /* 3190 */     this.createDateLocSup = createDateLocSup;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateLocSupForLabel()
    /*      */   {
    /* 3195 */     return this.createDateLocSupForLabel;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateLocSupForLabel(Date createDateLocSupForLabel)
    /*      */   {
    /* 3200 */     this.createDateLocSupForLabel = createDateLocSupForLabel;
    /*      */   }
    /*      */   
    /*      */   public String getCreateServerSup()
    /*      */   {
    /* 3205 */     return this.createServerSup;
    /*      */   }
    /*      */   
    /*      */   public void setCreateServerSup(String createServerSup)
    /*      */   {
    /* 3210 */     this.createServerSup = createServerSup;
    /*      */   }
    /*      */   
    /*      */   public String getCreateServerSupForLabel()
    /*      */   {
    /* 3215 */     return this.createServerSupForLabel;
    /*      */   }
    /*      */   
    /*      */   public void setCreateServerSupForLabel(String createServerSupForLabel)
    /*      */   {
    /* 3220 */     this.createServerSupForLabel = createServerSupForLabel;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateGMTSup()
    /*      */   {
    /* 3225 */     return this.createDateGMTSup;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateGMTSup(Date createDateGMTSup)
    /*      */   {
    /* 3230 */     this.createDateGMTSup = createDateGMTSup;
    /*      */   }
    /*      */   
    /*      */   public Date getCreateDateGMTSupForLabel()
    /*      */   {
    /* 3235 */     return this.createDateGMTSupForLabel;
    /*      */   }
    /*      */   
    /*      */   public void setCreateDateGMTSupForLabel(Date createDateGMTSupForLabel)
    /*      */   {
    /* 3240 */     this.createDateGMTSupForLabel = createDateGMTSupForLabel;
    /*      */   }
    /*      */   
    /*      */   public Date getTimestampGMTSup()
    /*      */   {
    /* 3245 */     return this.timestampGMTSup;
    /*      */   }
    /*      */   
    /*      */   public void setTimestampGMTSup(Date timestampGMTSup)
    /*      */   {
    /* 3250 */     this.timestampGMTSup = timestampGMTSup;
    /*      */   }
    /*      */   
    /*      */   public Date getTimestampGMTSupForLabel()
    /*      */   {
    /* 3255 */     return this.timestampGMTSupForLabel;
    /*      */   }
    /*      */   
    /*      */   public void setTimestampGMTSupForLabel(Date timestampGMTSupForLabel)
    /*      */   {
    /* 3260 */     this.timestampGMTSupForLabel = timestampGMTSupForLabel;
    /*      */   }
    /*      */   
    /*      */   public BigInteger getPoSequence()
    /*      */   {
    /* 3265 */     return this.poSequence;
    /*      */   }
    /*      */   
    /*      */   public void setPoSequence(BigInteger poSequence)
    /*      */   {
    /* 3270 */     this.poSequence = poSequence;
    /*      */   }
    /*      */   
    /*      */   public List<PoHistoryDO> getPoHistories()
    /*      */   {
    /* 3275 */     return this.poHistories;
    /*      */   }
    /*      */   
    /*      */   public void setPoHistories(List<PoHistoryDO> poHistories)
    /*      */   {
    /* 3280 */     this.poHistories = poHistories;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup51() {
    /* 3284 */     return this.userDefAttrSup51;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup36()
    /*      */   {
    /* 3289 */     return this.userDefAttrSup36;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup36(String userDefAttrSup36)
    /*      */   {
    /* 3294 */     this.userDefAttrSup36 = userDefAttrSup36;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup36Label()
    /*      */   {
    /* 3299 */     return this.userDefAttrSup36Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup36Label(String userDefAttrSup36Label)
    /*      */   {
    /* 3304 */     this.userDefAttrSup36Label = userDefAttrSup36Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup36Attr()
    /*      */   {
    /* 3309 */     return this.userDefAttrSup36Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup36Attr(Integer userDefAttrSup36Attr)
    /*      */   {
    /* 3314 */     this.userDefAttrSup36Attr = userDefAttrSup36Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup37()
    /*      */   {
    /* 3319 */     return this.userDefAttrSup37;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup37(String userDefAttrSup37)
    /*      */   {
    /* 3324 */     this.userDefAttrSup37 = userDefAttrSup37;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup37Label()
    /*      */   {
    /* 3329 */     return this.userDefAttrSup37Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup37Label(String userDefAttrSup37Label)
    /*      */   {
    /* 3334 */     this.userDefAttrSup37Label = userDefAttrSup37Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup37Attr()
    /*      */   {
    /* 3339 */     return this.userDefAttrSup37Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup37Attr(Integer userDefAttrSup37Attr)
    /*      */   {
    /* 3344 */     this.userDefAttrSup37Attr = userDefAttrSup37Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup38()
    /*      */   {
    /* 3349 */     return this.userDefAttrSup38;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup38(String userDefAttrSup38)
    /*      */   {
    /* 3354 */     this.userDefAttrSup38 = userDefAttrSup38;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup38Label()
    /*      */   {
    /* 3359 */     return this.userDefAttrSup38Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup38Label(String userDefAttrSup38Label)
    /*      */   {
    /* 3364 */     this.userDefAttrSup38Label = userDefAttrSup38Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup38Attr()
    /*      */   {
    /* 3369 */     return this.userDefAttrSup38Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup38Attr(Integer userDefAttrSup38Attr)
    /*      */   {
    /* 3374 */     this.userDefAttrSup38Attr = userDefAttrSup38Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup39()
    /*      */   {
    /* 3379 */     return this.userDefAttrSup39;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup39(String userDefAttrSup39)
    /*      */   {
    /* 3384 */     this.userDefAttrSup39 = userDefAttrSup39;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup39Label()
    /*      */   {
    /* 3389 */     return this.userDefAttrSup39Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup39Label(String userDefAttrSup39Label)
    /*      */   {
    /* 3394 */     this.userDefAttrSup39Label = userDefAttrSup39Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup39Attr()
    /*      */   {
    /* 3399 */     return this.userDefAttrSup39Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup39Attr(Integer userDefAttrSup39Attr)
    /*      */   {
    /* 3404 */     this.userDefAttrSup39Attr = userDefAttrSup39Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup40()
    /*      */   {
    /* 3409 */     return this.userDefAttrSup40;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup40(String userDefAttrSup40)
    /*      */   {
    /* 3414 */     this.userDefAttrSup40 = userDefAttrSup40;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup40Label()
    /*      */   {
    /* 3419 */     return this.userDefAttrSup40Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup40Label(String userDefAttrSup40Label)
    /*      */   {
    /* 3424 */     this.userDefAttrSup40Label = userDefAttrSup40Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup40Attr()
    /*      */   {
    /* 3429 */     return this.userDefAttrSup40Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup40Attr(Integer userDefAttrSup40Attr)
    /*      */   {
    /* 3434 */     this.userDefAttrSup40Attr = userDefAttrSup40Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup41()
    /*      */   {
    /* 3439 */     return this.userDefAttrSup41;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup41(String userDefAttrSup41)
    /*      */   {
    /* 3444 */     this.userDefAttrSup41 = userDefAttrSup41;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup41Label()
    /*      */   {
    /* 3449 */     return this.userDefAttrSup41Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup41Label(String userDefAttrSup41Label)
    /*      */   {
    /* 3454 */     this.userDefAttrSup41Label = userDefAttrSup41Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup41Attr()
    /*      */   {
    /* 3459 */     return this.userDefAttrSup41Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup41Attr(Integer userDefAttrSup41Attr)
    /*      */   {
    /* 3464 */     this.userDefAttrSup41Attr = userDefAttrSup41Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup42()
    /*      */   {
    /* 3469 */     return this.userDefAttrSup42;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup42(String userDefAttrSup42)
    /*      */   {
    /* 3474 */     this.userDefAttrSup42 = userDefAttrSup42;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup42Label()
    /*      */   {
    /* 3479 */     return this.userDefAttrSup42Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup42Label(String userDefAttrSup42Label)
    /*      */   {
    /* 3484 */     this.userDefAttrSup42Label = userDefAttrSup42Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup42Attr()
    /*      */   {
    /* 3489 */     return this.userDefAttrSup42Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup42Attr(Integer userDefAttrSup42Attr)
    /*      */   {
    /* 3494 */     this.userDefAttrSup42Attr = userDefAttrSup42Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup43()
    /*      */   {
    /* 3499 */     return this.userDefAttrSup43;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup43(String userDefAttrSup43)
    /*      */   {
    /* 3504 */     this.userDefAttrSup43 = userDefAttrSup43;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup43Label()
    /*      */   {
    /* 3509 */     return this.userDefAttrSup43Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup43Label(String userDefAttrSup43Label)
    /*      */   {
    /* 3514 */     this.userDefAttrSup43Label = userDefAttrSup43Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup43Attr()
    /*      */   {
    /* 3519 */     return this.userDefAttrSup43Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup43Attr(Integer userDefAttrSup43Attr)
    /*      */   {
    /* 3524 */     this.userDefAttrSup43Attr = userDefAttrSup43Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup44()
    /*      */   {
    /* 3529 */     return this.userDefAttrSup44;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup44(String userDefAttrSup44)
    /*      */   {
    /* 3534 */     this.userDefAttrSup44 = userDefAttrSup44;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup44Label()
    /*      */   {
    /* 3539 */     return this.userDefAttrSup44Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup44Label(String userDefAttrSup44Label)
    /*      */   {
    /* 3544 */     this.userDefAttrSup44Label = userDefAttrSup44Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup44Attr()
    /*      */   {
    /* 3549 */     return this.userDefAttrSup44Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup44Attr(Integer userDefAttrSup44Attr)
    /*      */   {
    /* 3554 */     this.userDefAttrSup44Attr = userDefAttrSup44Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup45()
    /*      */   {
    /* 3559 */     return this.userDefAttrSup45;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup45(String userDefAttrSup45)
    /*      */   {
    /* 3564 */     this.userDefAttrSup45 = userDefAttrSup45;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup45Label()
    /*      */   {
    /* 3569 */     return this.userDefAttrSup45Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup45Label(String userDefAttrSup45Label)
    /*      */   {
    /* 3574 */     this.userDefAttrSup45Label = userDefAttrSup45Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup45Attr()
    /*      */   {
    /* 3579 */     return this.userDefAttrSup45Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup45Attr(Integer userDefAttrSup45Attr)
    /*      */   {
    /* 3584 */     this.userDefAttrSup45Attr = userDefAttrSup45Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup46()
    /*      */   {
    /* 3589 */     return this.userDefAttrSup46;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup46(String userDefAttrSup46)
    /*      */   {
    /* 3594 */     this.userDefAttrSup46 = userDefAttrSup46;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup46Label()
    /*      */   {
    /* 3599 */     return this.userDefAttrSup46Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup46Label(String userDefAttrSup46Label)
    /*      */   {
    /* 3604 */     this.userDefAttrSup46Label = userDefAttrSup46Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup46Attr()
    /*      */   {
    /* 3609 */     return this.userDefAttrSup46Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup46Attr(Integer userDefAttrSup46Attr)
    /*      */   {
    /* 3614 */     this.userDefAttrSup46Attr = userDefAttrSup46Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup47()
    /*      */   {
    /* 3619 */     return this.userDefAttrSup47;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup47(String userDefAttrSup47)
    /*      */   {
    /* 3624 */     this.userDefAttrSup47 = userDefAttrSup47;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup47Label()
    /*      */   {
    /* 3629 */     return this.userDefAttrSup47Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup47Label(String userDefAttrSup47Label)
    /*      */   {
    /* 3634 */     this.userDefAttrSup47Label = userDefAttrSup47Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup47Attr()
    /*      */   {
    /* 3639 */     return this.userDefAttrSup47Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup47Attr(Integer userDefAttrSup47Attr)
    /*      */   {
    /* 3644 */     this.userDefAttrSup47Attr = userDefAttrSup47Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup48()
    /*      */   {
    /* 3649 */     return this.userDefAttrSup48;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup48(String userDefAttrSup48)
    /*      */   {
    /* 3654 */     this.userDefAttrSup48 = userDefAttrSup48;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup48Label()
    /*      */   {
    /* 3659 */     return this.userDefAttrSup48Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup48Label(String userDefAttrSup48Label)
    /*      */   {
    /* 3664 */     this.userDefAttrSup48Label = userDefAttrSup48Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup48Attr()
    /*      */   {
    /* 3669 */     return this.userDefAttrSup48Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup48Attr(Integer userDefAttrSup48Attr)
    /*      */   {
    /* 3674 */     this.userDefAttrSup48Attr = userDefAttrSup48Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup49()
    /*      */   {
    /* 3679 */     return this.userDefAttrSup49;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup49(String userDefAttrSup49)
    /*      */   {
    /* 3684 */     this.userDefAttrSup49 = userDefAttrSup49;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup49Label()
    /*      */   {
    /* 3689 */     return this.userDefAttrSup49Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup49Label(String userDefAttrSup49Label)
    /*      */   {
    /* 3694 */     this.userDefAttrSup49Label = userDefAttrSup49Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup49Attr()
    /*      */   {
    /* 3699 */     return this.userDefAttrSup49Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup49Attr(Integer userDefAttrSup49Attr)
    /*      */   {
    /* 3704 */     this.userDefAttrSup49Attr = userDefAttrSup49Attr;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup50()
    /*      */   {
    /* 3709 */     return this.userDefAttrSup50;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup50(String userDefAttrSup50)
    /*      */   {
    /* 3714 */     this.userDefAttrSup50 = userDefAttrSup50;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup50Label()
    /*      */   {
    /* 3719 */     return this.userDefAttrSup50Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup50Label(String userDefAttrSup50Label)
    /*      */   {
    /* 3724 */     this.userDefAttrSup50Label = userDefAttrSup50Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup50Attr()
    /*      */   {
    /* 3729 */     return this.userDefAttrSup50Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup50Attr(Integer userDefAttrSup50Attr)
    /*      */   {
    /* 3734 */     this.userDefAttrSup50Attr = userDefAttrSup50Attr;
    /*      */   }
    /*      */   
    /*      */   public static long getSerialversionuid()
    /*      */   {
    /* 3739 */     return 1L;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup51(String userDefAttrSup51)
    /*      */   {
    /* 3744 */     this.userDefAttrSup51 = userDefAttrSup51;
    /*      */   }
    /*      */   
    /*      */   public String getUserDefAttrSup51Label()
    /*      */   {
    /* 3749 */     return this.userDefAttrSup51Label;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup51Label(String userDefAttrSup51Label)
    /*      */   {
    /* 3754 */     this.userDefAttrSup51Label = userDefAttrSup51Label;
    /*      */   }
    /*      */   
    /*      */   public Integer getUserDefAttrSup51Attr()
    /*      */   {
    /* 3759 */     return this.userDefAttrSup51Attr;
    /*      */   }
    /*      */   
    /*      */   public void setUserDefAttrSup51Attr(Integer userDefAttrSup51Attr)
    /*      */   {
    /* 3764 */     this.userDefAttrSup51Attr = userDefAttrSup51Attr;
    /*      */   }
    /*      */   
    /*      */   public void setAesNo(String aesNo)
    /*      */   {
    /* 3769 */     this.aesNo = aesNo;
    /*      */   }
    /*      */   
    /*      */   public String getAesNo()
    /*      */   {
    /* 3774 */     return this.aesNo;
    /*      */   }
    /*      */   
    /*      */   public void setItnNo(String itnNo)
    /*      */   {
    /* 3779 */     this.itnNo = itnNo;
    /*      */   }
    /*      */   
    /*      */   public String getItnNo()
    /*      */   {
    /* 3784 */     return this.itnNo;
    /*      */   }
    /*      */   
    /*      */   public String getOriCourierName()
    /*      */   {
    /* 3789 */     return this.oriCourierName;
    /*      */   }
    /*      */   
    /*      */   public void setOriCourierName(String oriCourierName)
    /*      */   {
    /* 3794 */     this.oriCourierName = oriCourierName;
    /*      */   }
    /*      */   
    /*      */   public String getOriCourierNo()
    /*      */   {
    /* 3799 */     return this.oriCourierNo;
    /*      */   }
    /*      */   
    /*      */   public void setOriCourierNo(String oriCourierNo)
    /*      */   {
    /* 3804 */     this.oriCourierNo = oriCourierNo;
    /*      */   }
    /*      */ }
    
    /* Location:           /home/sea/.m2/repository/com/icil/sofs/sofs-dao-booking/1.0.0-SNAPSHOT/sofs-dao-booking-1.0.0-SNAPSHOT.jar
     * Qualified Name:     com.icil.sofs.dao.booking.model.ShipperComPartDetailDO
     * Java Class Version: 6 (50.0)
     * JD-Core Version:    0.7.0.1
     */
    View Code
  • 相关阅读:
    vue生命周期简介和钩子函数
    vue.js 笔记
    vue-cli安装以及搭建vue项目详细步骤
    nodejs 报错
    线程池 一 ThreadPoolExecutor
    JUC 一 线程池
    线程八锁
    JUC 一 ReentrantReadWriteLock
    JUC 一 ReentrantLock 可重入锁
    JUC 一 CountDownLatch(闭锁)
  • 原文地址:https://www.cnblogs.com/lshan/p/9720008.html
Copyright © 2020-2023  润新知