123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2016.07.06 at 11:14:07 AM CST
- //
- package com.sinosoft.nwyj.integration.cxf.respondNotice;
- 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;
- /**
- * <p>Java class for RespondNotice complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="RespondNotice">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="business_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="relation_notice_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="emergency_start_time" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- * <element name="count_start_time" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- * <element name="count_interval_time" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="submitted_area_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "RespondNotice", propOrder = {
- "businessId",
- "relationNoticeNo",
- "emergencyStartTime",
- "countStartTime",
- "countIntervalTime",
- "submittedAreaId"
- })
- public class RespondNotice implements Serializable {
- /**
- *
- */
- private static final long serialVersionUID = 6480973347984441851L;
- @XmlElement(name = "business_id", required = true)
- protected String businessId;//业务id
- @XmlElement(name = "relation_notice_no", required = true)
- protected String relationNoticeNo;//关联通知单编号
- @XmlElement(name = "emergency_start_time", required = true)
- @XmlSchemaType(name = "dateTime")//应急开始时间
- protected XMLGregorianCalendar emergencyStartTime;
- @XmlElement(name = "count_start_time", required = true)
- @XmlSchemaType(name = "dateTime")//统计开始时间
- protected XMLGregorianCalendar countStartTime;
- @XmlElement(name = "count_interval_time", required = true)
- protected String countIntervalTime;//统计时间间隔
- @XmlElement(name = "submitted_area_id", required = true)
- protected String submittedAreaId;//报送地域范围
- /**
- * Gets the value of the businessId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getBusinessId() {
- return businessId;
- }
- /**
- * Sets the value of the businessId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setBusinessId(String value) {
- this.businessId = value;
- }
- /**
- * Gets the value of the relationNoticeNo property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRelationNoticeNo() {
- return relationNoticeNo;
- }
- /**
- * Sets the value of the relationNoticeNo property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRelationNoticeNo(String value) {
- this.relationNoticeNo = value;
- }
- /**
- * Gets the value of the emergencyStartTime property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getEmergencyStartTime() {
- return emergencyStartTime;
- }
- /**
- * Sets the value of the emergencyStartTime property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setEmergencyStartTime(XMLGregorianCalendar value) {
- this.emergencyStartTime = value;
- }
- /**
- * Gets the value of the countStartTime property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getCountStartTime() {
- return countStartTime;
- }
- /**
- * Sets the value of the countStartTime property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setCountStartTime(XMLGregorianCalendar value) {
- this.countStartTime = value;
- }
- /**
- * Gets the value of the countIntervalTime property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getCountIntervalTime() {
- return countIntervalTime;
- }
- /**
- * Sets the value of the countIntervalTime property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setCountIntervalTime(String value) {
- this.countIntervalTime = value;
- }
- /**
- * Gets the value of the submittedAreaId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getSubmittedAreaId() {
- return submittedAreaId;
- }
- /**
- * Sets the value of the submittedAreaId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setSubmittedAreaId(String value) {
- this.submittedAreaId = value;
- }
- @Override
- public String toString() {
- return "RespondNotice [businessId=" + businessId + ", relationNoticeNo=" + relationNoticeNo
- + ", emergencyStartTime=" + emergencyStartTime + ", countStartTime=" + countStartTime
- + ", countIntervalTime=" + countIntervalTime + ", submittedAreaId=" + submittedAreaId + "]";
- }
- }
|