// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.04.26 at 10:04:46 AM CST // package com.sinosoft.nwyj.integration.cxf.waringRelieve; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for EmergencyWaringRelieveForm complex type. * 发布突发事件预警解除通知单 *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="EmergencyWaringRelieveForm">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="release_unit" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="issue_person" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="early_warning_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="early_warning_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="relieve_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         <element name="relieve_area_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="relieve_reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="measure_and_request" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="remark" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="attachment" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="write_dept" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="writer" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="write_time" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EmergencyWaringRelieveForm", propOrder = { "releaseUnit", "issuePerson", "earlyWarningName", "earlyWarningId", "relieveDate", "relieveAreaId", "relieveReason", "measureAndRequest", "remark", "attachment", "writeDept", "writer", "writeTime" }) public class EmergencyWaringRelieveForm implements Serializable{ /** * 序列化 */ private static final long serialVersionUID = 1369811076684343378L; @XmlElement(name = "release_unit", required = true) protected String releaseUnit; @XmlElement(name = "issue_person", required = true) protected String issuePerson; @XmlElement(name = "early_warning_name", required = true) protected String earlyWarningName; @XmlElement(name = "early_warning_id", required = true) protected String earlyWarningId; @XmlElement(name = "relieve_date", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar relieveDate; @XmlElement(name = "relieve_area_id", required = true) protected String relieveAreaId; @XmlElement(name = "relieve_reason", required = true) protected String relieveReason; @XmlElement(name = "measure_and_request", required = true) protected String measureAndRequest; @XmlElement(required = true) protected String remark; @XmlElement(required = true) protected String attachment; @XmlElement(name = "write_dept", required = true) protected String writeDept; @XmlElement(required = true) protected String writer; @XmlElement(name = "write_time", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar writeTime; /** * Gets the value of the releaseUnit property. * * @return * possible object is * {@link String } * */ public String getReleaseUnit() { return releaseUnit; } /** * Sets the value of the releaseUnit property. * * @param value * allowed object is * {@link String } * */ public void setReleaseUnit(String value) { this.releaseUnit = value; } /** * Gets the value of the issuePerson property. * * @return * possible object is * {@link String } * */ public String getIssuePerson() { return issuePerson; } /** * Sets the value of the issuePerson property. * * @param value * allowed object is * {@link String } * */ public void setIssuePerson(String value) { this.issuePerson = value; } /** * Gets the value of the earlyWarningName property. * * @return * possible object is * {@link String } * */ public String getEarlyWarningName() { return earlyWarningName; } /** * Sets the value of the earlyWarningName property. * * @param value * allowed object is * {@link String } * */ public void setEarlyWarningName(String value) { this.earlyWarningName = value; } /** * Gets the value of the earlyWarningId property. * * @return * possible object is * {@link String } * */ public String getEarlyWarningId() { return earlyWarningId; } /** * Sets the value of the earlyWarningId property. * * @param value * allowed object is * {@link String } * */ public void setEarlyWarningId(String value) { this.earlyWarningId = value; } /** * Gets the value of the relieveDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getRelieveDate() { return relieveDate; } /** * Sets the value of the relieveDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setRelieveDate(XMLGregorianCalendar value) { this.relieveDate = value; } /** * Gets the value of the relieveAreaId property. * * @return * possible object is * {@link String } * */ public String getRelieveAreaId() { return relieveAreaId; } /** * Sets the value of the relieveAreaId property. * * @param value * allowed object is * {@link String } * */ public void setRelieveAreaId(String value) { this.relieveAreaId = value; } /** * Gets the value of the relieveReason property. * * @return * possible object is * {@link String } * */ public String getRelieveReason() { return relieveReason; } /** * Sets the value of the relieveReason property. * * @param value * allowed object is * {@link String } * */ public void setRelieveReason(String value) { this.relieveReason = value; } /** * Gets the value of the measureAndRequest property. * * @return * possible object is * {@link String } * */ public String getMeasureAndRequest() { return measureAndRequest; } /** * Sets the value of the measureAndRequest property. * * @param value * allowed object is * {@link String } * */ public void setMeasureAndRequest(String value) { this.measureAndRequest = value; } /** * Gets the value of the remark property. * * @return * possible object is * {@link String } * */ public String getRemark() { return remark; } /** * Sets the value of the remark property. * * @param value * allowed object is * {@link String } * */ public void setRemark(String value) { this.remark = value; } /** * Gets the value of the attachment property. * * @return * possible object is * {@link String } * */ public String getAttachment() { return attachment; } /** * Sets the value of the attachment property. * * @param value * allowed object is * {@link String } * */ public void setAttachment(String value) { this.attachment = value; } /** * Gets the value of the writeDept property. * * @return * possible object is * {@link String } * */ public String getWriteDept() { return writeDept; } /** * Sets the value of the writeDept property. * * @param value * allowed object is * {@link String } * */ public void setWriteDept(String value) { this.writeDept = value; } /** * Gets the value of the writer property. * * @return * possible object is * {@link String } * */ public String getWriter() { return writer; } /** * Sets the value of the writer property. * * @param value * allowed object is * {@link String } * */ public void setWriter(String value) { this.writer = value; } /** * Gets the value of the writeTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getWriteTime() { return writeTime; } /** * Sets the value of the writeTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setWriteTime(XMLGregorianCalendar value) { this.writeTime = value; } }