package th.co.muangthai.endrprint.wfxml; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for SearchPolicyDetailAdapterOutput complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SearchPolicyDetailAdapterOutput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="POLICY_NUMBER" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="APPLICATION_NO" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="STATUS_CODE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="POLICY_STATUS" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ISSUE_STATE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="CHANNEL" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="CHANNELNAME" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ISSUE_DATE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="PAID_TO_DATE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="MODEPREMIUMSTR" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="M2PAYT" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="MODX" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="MODE_PREMIUM" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         <element name="APL_AMOUNT" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         <element name="SUBCODE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="CARD_HOLDER" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="BRNCOD" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="BRNH3" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="REF1" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="BRANCH" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="SEGMENT" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="APPROVEDATE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="MISC_SUSPENSE" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         <element name="PO_MISC_SUSPENSE_DATE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="MISC_SUSPENSE_DATE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="PREMIUM_SUSPENSE" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         <element name="PREM_SUSPENSE_DATE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="BASIC_PLAN_CODE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="PLAN" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="CLIENT_NUMBER" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ADDRESS" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="OWNER" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="INSURE" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="FACE_AMOUNT" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchPolicyDetailAdapterOutput", propOrder = { "policynumber", "applicationno", "statuscode", "policystatus", "issuestate", "channel", "channelname", "issuedate", "paidtodate", "modepremiumstr", "m2PAYT", "modx", "modepremium", "aplamount", "subcode", "cardholder", "brncod", "brnh3", "ref1", "branch", "segment", "approvedate", "miscsuspense", "pomiscsuspensedate", "miscsuspensedate", "premiumsuspense", "premsuspensedate", "basicplancode", "plan", "clientnumber", "address", "owner", "insure", "faceamount" }) public class SearchPolicyDetailAdapterOutput { @XmlElement(name = "POLICY_NUMBER", required = true, nillable = true) protected String policynumber; @XmlElement(name = "APPLICATION_NO", required = true, nillable = true) protected String applicationno; @XmlElement(name = "STATUS_CODE", required = true, nillable = true) protected String statuscode; @XmlElement(name = "POLICY_STATUS", required = true, nillable = true) protected String policystatus; @XmlElement(name = "ISSUE_STATE", required = true, nillable = true) protected String issuestate; @XmlElement(name = "CHANNEL", required = true, nillable = true) protected String channel; @XmlElement(name = "CHANNELNAME", required = true, nillable = true) protected String channelname; @XmlElement(name = "ISSUE_DATE", required = true, nillable = true) protected String issuedate; @XmlElement(name = "PAID_TO_DATE", required = true, nillable = true) protected String paidtodate; @XmlElement(name = "MODEPREMIUMSTR", required = true, nillable = true) protected String modepremiumstr; @XmlElement(name = "M2PAYT", required = true, nillable = true) protected String m2PAYT; @XmlElement(name = "MODX", required = true, nillable = true) protected String modx; @XmlElement(name = "MODE_PREMIUM", required = true, nillable = true) protected BigDecimal modepremium; @XmlElement(name = "APL_AMOUNT", required = true, nillable = true) protected BigDecimal aplamount; @XmlElement(name = "SUBCODE", required = true, nillable = true) protected String subcode; @XmlElement(name = "CARD_HOLDER", required = true, nillable = true) protected String cardholder; @XmlElement(name = "BRNCOD", required = true, nillable = true) protected String brncod; @XmlElement(name = "BRNH3", required = true, nillable = true) protected String brnh3; @XmlElement(name = "REF1", required = true, nillable = true) protected String ref1; @XmlElement(name = "BRANCH", required = true, nillable = true) protected String branch; @XmlElement(name = "SEGMENT", required = true, nillable = true) protected String segment; @XmlElement(name = "APPROVEDATE", required = true, nillable = true) protected String approvedate; @XmlElement(name = "MISC_SUSPENSE", required = true, nillable = true) protected BigDecimal miscsuspense; @XmlElement(name = "PO_MISC_SUSPENSE_DATE", required = true, nillable = true) protected String pomiscsuspensedate; @XmlElement(name = "MISC_SUSPENSE_DATE", required = true, nillable = true) protected String miscsuspensedate; @XmlElement(name = "PREMIUM_SUSPENSE", required = true, nillable = true) protected BigDecimal premiumsuspense; @XmlElement(name = "PREM_SUSPENSE_DATE", required = true, nillable = true) protected String premsuspensedate; @XmlElement(name = "BASIC_PLAN_CODE", required = true, nillable = true) protected String basicplancode; @XmlElement(name = "PLAN", required = true, nillable = true) protected String plan; @XmlElement(name = "CLIENT_NUMBER", required = true, nillable = true) protected String clientnumber; @XmlElement(name = "ADDRESS", required = true, nillable = true) protected String address; @XmlElement(name = "OWNER", required = true, nillable = true) protected String owner; @XmlElement(name = "INSURE", required = true, nillable = true) protected String insure; @XmlElement(name = "FACE_AMOUNT", required = true, nillable = true) protected BigDecimal faceamount; /** * Gets the value of the policynumber property. * * @return * possible object is * {@link String } * */ public String getPOLICYNUMBER() { return policynumber; } /** * Sets the value of the policynumber property. * * @param value * allowed object is * {@link String } * */ public void setPOLICYNUMBER(String value) { this.policynumber = value; } /** * Gets the value of the applicationno property. * * @return * possible object is * {@link String } * */ public String getAPPLICATIONNO() { return applicationno; } /** * Sets the value of the applicationno property. * * @param value * allowed object is * {@link String } * */ public void setAPPLICATIONNO(String value) { this.applicationno = value; } /** * Gets the value of the statuscode property. * * @return * possible object is * {@link String } * */ public String getSTATUSCODE() { return statuscode; } /** * Sets the value of the statuscode property. * * @param value * allowed object is * {@link String } * */ public void setSTATUSCODE(String value) { this.statuscode = value; } /** * Gets the value of the policystatus property. * * @return * possible object is * {@link String } * */ public String getPOLICYSTATUS() { return policystatus; } /** * Sets the value of the policystatus property. * * @param value * allowed object is * {@link String } * */ public void setPOLICYSTATUS(String value) { this.policystatus = value; } /** * Gets the value of the issuestate property. * * @return * possible object is * {@link String } * */ public String getISSUESTATE() { return issuestate; } /** * Sets the value of the issuestate property. * * @param value * allowed object is * {@link String } * */ public void setISSUESTATE(String value) { this.issuestate = value; } /** * Gets the value of the channel property. * * @return * possible object is * {@link String } * */ public String getCHANNEL() { return channel; } /** * Sets the value of the channel property. * * @param value * allowed object is * {@link String } * */ public void setCHANNEL(String value) { this.channel = value; } /** * Gets the value of the channelname property. * * @return * possible object is * {@link String } * */ public String getCHANNELNAME() { return channelname; } /** * Sets the value of the channelname property. * * @param value * allowed object is * {@link String } * */ public void setCHANNELNAME(String value) { this.channelname = value; } /** * Gets the value of the issuedate property. * * @return * possible object is * {@link String } * */ public String getISSUEDATE() { return issuedate; } /** * Sets the value of the issuedate property. * * @param value * allowed object is * {@link String } * */ public void setISSUEDATE(String value) { this.issuedate = value; } /** * Gets the value of the paidtodate property. * * @return * possible object is * {@link String } * */ public String getPAIDTODATE() { return paidtodate; } /** * Sets the value of the paidtodate property. * * @param value * allowed object is * {@link String } * */ public void setPAIDTODATE(String value) { this.paidtodate = value; } /** * Gets the value of the modepremiumstr property. * * @return * possible object is * {@link String } * */ public String getMODEPREMIUMSTR() { return modepremiumstr; } /** * Sets the value of the modepremiumstr property. * * @param value * allowed object is * {@link String } * */ public void setMODEPREMIUMSTR(String value) { this.modepremiumstr = value; } /** * Gets the value of the m2PAYT property. * * @return * possible object is * {@link String } * */ public String getM2PAYT() { return m2PAYT; } /** * Sets the value of the m2PAYT property. * * @param value * allowed object is * {@link String } * */ public void setM2PAYT(String value) { this.m2PAYT = value; } /** * Gets the value of the modx property. * * @return * possible object is * {@link String } * */ public String getMODX() { return modx; } /** * Sets the value of the modx property. * * @param value * allowed object is * {@link String } * */ public void setMODX(String value) { this.modx = value; } /** * Gets the value of the modepremium property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getMODEPREMIUM() { return modepremium; } /** * Sets the value of the modepremium property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setMODEPREMIUM(BigDecimal value) { this.modepremium = value; } /** * Gets the value of the aplamount property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getAPLAMOUNT() { return aplamount; } /** * Sets the value of the aplamount property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setAPLAMOUNT(BigDecimal value) { this.aplamount = value; } /** * Gets the value of the subcode property. * * @return * possible object is * {@link String } * */ public String getSUBCODE() { return subcode; } /** * Sets the value of the subcode property. * * @param value * allowed object is * {@link String } * */ public void setSUBCODE(String value) { this.subcode = value; } /** * Gets the value of the cardholder property. * * @return * possible object is * {@link String } * */ public String getCARDHOLDER() { return cardholder; } /** * Sets the value of the cardholder property. * * @param value * allowed object is * {@link String } * */ public void setCARDHOLDER(String value) { this.cardholder = value; } /** * Gets the value of the brncod property. * * @return * possible object is * {@link String } * */ public String getBRNCOD() { return brncod; } /** * Sets the value of the brncod property. * * @param value * allowed object is * {@link String } * */ public void setBRNCOD(String value) { this.brncod = value; } /** * Gets the value of the brnh3 property. * * @return * possible object is * {@link String } * */ public String getBRNH3() { return brnh3; } /** * Sets the value of the brnh3 property. * * @param value * allowed object is * {@link String } * */ public void setBRNH3(String value) { this.brnh3 = value; } /** * Gets the value of the ref1 property. * * @return * possible object is * {@link String } * */ public String getREF1() { return ref1; } /** * Sets the value of the ref1 property. * * @param value * allowed object is * {@link String } * */ public void setREF1(String value) { this.ref1 = value; } /** * Gets the value of the branch property. * * @return * possible object is * {@link String } * */ public String getBRANCH() { return branch; } /** * Sets the value of the branch property. * * @param value * allowed object is * {@link String } * */ public void setBRANCH(String value) { this.branch = value; } /** * Gets the value of the segment property. * * @return * possible object is * {@link String } * */ public String getSEGMENT() { return segment; } /** * Sets the value of the segment property. * * @param value * allowed object is * {@link String } * */ public void setSEGMENT(String value) { this.segment = value; } /** * Gets the value of the approvedate property. * * @return * possible object is * {@link String } * */ public String getAPPROVEDATE() { return approvedate; } /** * Sets the value of the approvedate property. * * @param value * allowed object is * {@link String } * */ public void setAPPROVEDATE(String value) { this.approvedate = value; } /** * Gets the value of the miscsuspense property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getMISCSUSPENSE() { return miscsuspense; } /** * Sets the value of the miscsuspense property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setMISCSUSPENSE(BigDecimal value) { this.miscsuspense = value; } /** * Gets the value of the pomiscsuspensedate property. * * @return * possible object is * {@link String } * */ public String getPOMISCSUSPENSEDATE() { return pomiscsuspensedate; } /** * Sets the value of the pomiscsuspensedate property. * * @param value * allowed object is * {@link String } * */ public void setPOMISCSUSPENSEDATE(String value) { this.pomiscsuspensedate = value; } /** * Gets the value of the miscsuspensedate property. * * @return * possible object is * {@link String } * */ public String getMISCSUSPENSEDATE() { return miscsuspensedate; } /** * Sets the value of the miscsuspensedate property. * * @param value * allowed object is * {@link String } * */ public void setMISCSUSPENSEDATE(String value) { this.miscsuspensedate = value; } /** * Gets the value of the premiumsuspense property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPREMIUMSUSPENSE() { return premiumsuspense; } /** * Sets the value of the premiumsuspense property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPREMIUMSUSPENSE(BigDecimal value) { this.premiumsuspense = value; } /** * Gets the value of the premsuspensedate property. * * @return * possible object is * {@link String } * */ public String getPREMSUSPENSEDATE() { return premsuspensedate; } /** * Sets the value of the premsuspensedate property. * * @param value * allowed object is * {@link String } * */ public void setPREMSUSPENSEDATE(String value) { this.premsuspensedate = value; } /** * Gets the value of the basicplancode property. * * @return * possible object is * {@link String } * */ public String getBASICPLANCODE() { return basicplancode; } /** * Sets the value of the basicplancode property. * * @param value * allowed object is * {@link String } * */ public void setBASICPLANCODE(String value) { this.basicplancode = value; } /** * Gets the value of the plan property. * * @return * possible object is * {@link String } * */ public String getPLAN() { return plan; } /** * Sets the value of the plan property. * * @param value * allowed object is * {@link String } * */ public void setPLAN(String value) { this.plan = value; } /** * Gets the value of the clientnumber property. * * @return * possible object is * {@link String } * */ public String getCLIENTNUMBER() { return clientnumber; } /** * Sets the value of the clientnumber property. * * @param value * allowed object is * {@link String } * */ public void setCLIENTNUMBER(String value) { this.clientnumber = value; } /** * Gets the value of the address property. * * @return * possible object is * {@link String } * */ public String getADDRESS() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link String } * */ public void setADDRESS(String value) { this.address = value; } /** * Gets the value of the owner property. * * @return * possible object is * {@link String } * */ public String getOWNER() { return owner; } /** * Sets the value of the owner property. * * @param value * allowed object is * {@link String } * */ public void setOWNER(String value) { this.owner = value; } /** * Gets the value of the insure property. * * @return * possible object is * {@link String } * */ public String getINSURE() { return insure; } /** * Sets the value of the insure property. * * @param value * allowed object is * {@link String } * */ public void setINSURE(String value) { this.insure = value; } /** * Gets the value of the faceamount property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getFACEAMOUNT() { return faceamount; } /** * Sets the value of the faceamount property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setFACEAMOUNT(BigDecimal value) { this.faceamount = value; } }