package net.tooan.ynpay.order.eadd; 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 policy complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="policy"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="applicantPeople" type="{http://eadd.center.tg.tiangu.net/}people" minOccurs="0"/> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="insurancePlan" type="{http://eadd.center.tg.tiangu.net/}insurancePlan" minOccurs="0"/> * <element name="insuredPeople" type="{http://eadd.center.tg.tiangu.net/}people" minOccurs="0"/> * <element name="order_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="policyNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="userPolicyNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "policy", propOrder = { "applicantPeople", "id", "insurancePlan", "insuredPeople", "orderId", "policyNo", "status", "userPolicyNo" }) public class Policy { protected People applicantPeople; protected String id; protected InsurancePlan insurancePlan; protected People insuredPeople; @XmlElement(name = "order_id") protected String orderId; protected String policyNo; protected String status; protected String userPolicyNo; /** * Gets the value of the applicantPeople property. * * @return * possible object is * {@link People } * */ public People getApplicantPeople() { return applicantPeople; } /** * Sets the value of the applicantPeople property. * * @param value * allowed object is * {@link People } * */ public void setApplicantPeople(People value) { this.applicantPeople = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the insurancePlan property. * * @return * possible object is * {@link InsurancePlan } * */ public InsurancePlan getInsurancePlan() { return insurancePlan; } /** * Sets the value of the insurancePlan property. * * @param value * allowed object is * {@link InsurancePlan } * */ public void setInsurancePlan(InsurancePlan value) { this.insurancePlan = value; } /** * Gets the value of the insuredPeople property. * * @return * possible object is * {@link People } * */ public People getInsuredPeople() { return insuredPeople; } /** * Sets the value of the insuredPeople property. * * @param value * allowed object is * {@link People } * */ public void setInsuredPeople(People value) { this.insuredPeople = value; } /** * Gets the value of the orderId property. * * @return * possible object is * {@link String } * */ public String getOrderId() { return orderId; } /** * Sets the value of the orderId property. * * @param value * allowed object is * {@link String } * */ public void setOrderId(String value) { this.orderId = value; } /** * Gets the value of the policyNo property. * * @return * possible object is * {@link String } * */ public String getPolicyNo() { return policyNo; } /** * Sets the value of the policyNo property. * * @param value * allowed object is * {@link String } * */ public void setPolicyNo(String value) { this.policyNo = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the userPolicyNo property. * * @return * possible object is * {@link String } * */ public String getUserPolicyNo() { return userPolicyNo; } /** * Sets the value of the userPolicyNo property. * * @param value * allowed object is * {@link String } * */ public void setUserPolicyNo(String value) { this.userPolicyNo = value; } }