63 lines
1.5 KiB
Plaintext
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>
|
||
|
* <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>
|
||
|
* </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;
|
||
|
}
|
||
|
|
||
|
}
|