
package eo.service.client.cnife038;

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 element complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="element">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;all>
 *         &lt;element name="sysid" type="{http://client.service.eo/CNIFE038/}sysid" minOccurs="0"/>
 *         &lt;element name="member_sbt_cd" type="{http://client.service.eo/CNIFE038/}member_sbt_cd" minOccurs="0"/>
 *         &lt;element name="cont_kei_no" type="{http://client.service.eo/CNIFE038/}cont_kei_no" minOccurs="0"/>
 *       &lt;/all>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "element", propOrder = {

})
public class Element {

    protected Sysid sysid;
    @XmlElement(name = "member_sbt_cd")
    protected MemberSbtCd memberSbtCd;
    @XmlElement(name = "cont_kei_no")
    protected ContKeiNo contKeiNo;

    /**
     * Gets the value of the sysid property.
     * 
     * @return
     *     possible object is
     *     {@link Sysid }
     *     
     */
    public Sysid getSysid() {
        return sysid;
    }

    /**
     * Sets the value of the sysid property.
     * 
     * @param value
     *     allowed object is
     *     {@link Sysid }
     *     
     */
    public void setSysid(Sysid value) {
        this.sysid = value;
    }

    /**
     * Gets the value of the memberSbtCd property.
     * 
     * @return
     *     possible object is
     *     {@link MemberSbtCd }
     *     
     */
    public MemberSbtCd getMemberSbtCd() {
        return memberSbtCd;
    }

    /**
     * Sets the value of the memberSbtCd property.
     * 
     * @param value
     *     allowed object is
     *     {@link MemberSbtCd }
     *     
     */
    public void setMemberSbtCd(MemberSbtCd value) {
        this.memberSbtCd = value;
    }

    /**
     * Gets the value of the contKeiNo property.
     * 
     * @return
     *     possible object is
     *     {@link ContKeiNo }
     *     
     */
    public ContKeiNo getContKeiNo() {
        return contKeiNo;
    }

    /**
     * Sets the value of the contKeiNo property.
     * 
     * @param value
     *     allowed object is
     *     {@link ContKeiNo }
     *     
     */
    public void setContKeiNo(ContKeiNo value) {
        this.contKeiNo = value;
    }

}
