package net.tooan.ynpay.order.eadd; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for insurancePlan complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="insurancePlan"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="effectiveTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="insurer" type="{http://eadd.center.tg.tiangu.net/}insurer" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="planPrice" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="suminsured" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "insurancePlan", propOrder = { "code", "effectiveTime", "id", "insurer", "name", "planPrice", "suminsured" }) public class InsurancePlan { protected String code; protected String effectiveTime; protected String id; protected Insurer insurer; protected String name; protected String planPrice; protected String suminsured; /** * Gets the value of the code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } /** * Gets the value of the effectiveTime property. * * @return * possible object is * {@link String } * */ public String getEffectiveTime() { return effectiveTime; } /** * Sets the value of the effectiveTime property. * * @param value * allowed object is * {@link String } * */ public void setEffectiveTime(String value) { this.effectiveTime = 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 insurer property. * * @return * possible object is * {@link Insurer } * */ public Insurer getInsurer() { return insurer; } /** * Sets the value of the insurer property. * * @param value * allowed object is * {@link Insurer } * */ public void setInsurer(Insurer value) { this.insurer = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the planPrice property. * * @return * possible object is * {@link String } * */ public String getPlanPrice() { return planPrice; } /** * Sets the value of the planPrice property. * * @param value * allowed object is * {@link String } * */ public void setPlanPrice(String value) { this.planPrice = value; } /** * Gets the value of the suminsured property. * * @return * possible object is * {@link String } * */ public String getSuminsured() { return suminsured; } /** * Sets the value of the suminsured property. * * @param value * allowed object is * {@link String } * */ public void setSuminsured(String value) { this.suminsured = value; } }