package th.co.muangthai.endrprint.wfxml; 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 SearchPolicyDetailAdapterInput complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="SearchPolicyDetailAdapterInput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="p_policy_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SearchPolicyDetailAdapterInput", propOrder = {
"pPolicyNo"
})
public class SearchPolicyDetailAdapterInput {
@XmlElement(name = "p_policy_no", required = true, nillable = true)
protected String pPolicyNo;
/**
* Gets the value of the pPolicyNo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPPolicyNo() {
return pPolicyNo;
}
/**
* Sets the value of the pPolicyNo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPPolicyNo(String value) {
this.pPolicyNo = value;
}
}