ENDRPrint/.svn/pristine/70/70ad14ccb30db18e66845778132dfaab08cbb878.svn-base
2024-08-14 10:33:27 +07:00

63 lines
1.5 KiB
Plaintext

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;
/**
* <p>Java class for SearchPolicyDetailAdapterInput complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="SearchPolicyDetailAdapterInput">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="p_policy_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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;
}
}