297d98da282d9cd6dcb30ae842d5abf0d732b231.svn-base 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2016.07.06 at 11:14:07 AM CST
  6. //
  7. package com.sinosoft.nwyj.integration.cxf.respondNotice;
  8. import java.io.Serializable;
  9. import javax.xml.bind.annotation.XmlAccessType;
  10. import javax.xml.bind.annotation.XmlAccessorType;
  11. import javax.xml.bind.annotation.XmlElement;
  12. import javax.xml.bind.annotation.XmlSchemaType;
  13. import javax.xml.bind.annotation.XmlType;
  14. import javax.xml.datatype.XMLGregorianCalendar;
  15. /**
  16. * <p>Java class for RespondNotice complex type.
  17. *
  18. * <p>The following schema fragment specifies the expected content contained within this class.
  19. *
  20. * <pre>
  21. * &lt;complexType name="RespondNotice">
  22. * &lt;complexContent>
  23. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  24. * &lt;sequence>
  25. * &lt;element name="business_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
  26. * &lt;element name="relation_notice_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
  27. * &lt;element name="emergency_start_time" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
  28. * &lt;element name="count_start_time" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
  29. * &lt;element name="count_interval_time" type="{http://www.w3.org/2001/XMLSchema}string"/>
  30. * &lt;element name="submitted_area_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
  31. * &lt;/sequence>
  32. * &lt;/restriction>
  33. * &lt;/complexContent>
  34. * &lt;/complexType>
  35. * </pre>
  36. *
  37. *
  38. */
  39. @XmlAccessorType(XmlAccessType.FIELD)
  40. @XmlType(name = "RespondNotice", propOrder = {
  41. "businessId",
  42. "relationNoticeNo",
  43. "emergencyStartTime",
  44. "countStartTime",
  45. "countIntervalTime",
  46. "submittedAreaId"
  47. })
  48. public class RespondNotice implements Serializable {
  49. /**
  50. *
  51. */
  52. private static final long serialVersionUID = 6480973347984441851L;
  53. @XmlElement(name = "business_id", required = true)
  54. protected String businessId;//业务id
  55. @XmlElement(name = "relation_notice_no", required = true)
  56. protected String relationNoticeNo;//关联通知单编号
  57. @XmlElement(name = "emergency_start_time", required = true)
  58. @XmlSchemaType(name = "dateTime")//应急开始时间
  59. protected XMLGregorianCalendar emergencyStartTime;
  60. @XmlElement(name = "count_start_time", required = true)
  61. @XmlSchemaType(name = "dateTime")//统计开始时间
  62. protected XMLGregorianCalendar countStartTime;
  63. @XmlElement(name = "count_interval_time", required = true)
  64. protected String countIntervalTime;//统计时间间隔
  65. @XmlElement(name = "submitted_area_id", required = true)
  66. protected String submittedAreaId;//报送地域范围
  67. /**
  68. * Gets the value of the businessId property.
  69. *
  70. * @return
  71. * possible object is
  72. * {@link String }
  73. *
  74. */
  75. public String getBusinessId() {
  76. return businessId;
  77. }
  78. /**
  79. * Sets the value of the businessId property.
  80. *
  81. * @param value
  82. * allowed object is
  83. * {@link String }
  84. *
  85. */
  86. public void setBusinessId(String value) {
  87. this.businessId = value;
  88. }
  89. /**
  90. * Gets the value of the relationNoticeNo property.
  91. *
  92. * @return
  93. * possible object is
  94. * {@link String }
  95. *
  96. */
  97. public String getRelationNoticeNo() {
  98. return relationNoticeNo;
  99. }
  100. /**
  101. * Sets the value of the relationNoticeNo property.
  102. *
  103. * @param value
  104. * allowed object is
  105. * {@link String }
  106. *
  107. */
  108. public void setRelationNoticeNo(String value) {
  109. this.relationNoticeNo = value;
  110. }
  111. /**
  112. * Gets the value of the emergencyStartTime property.
  113. *
  114. * @return
  115. * possible object is
  116. * {@link XMLGregorianCalendar }
  117. *
  118. */
  119. public XMLGregorianCalendar getEmergencyStartTime() {
  120. return emergencyStartTime;
  121. }
  122. /**
  123. * Sets the value of the emergencyStartTime property.
  124. *
  125. * @param value
  126. * allowed object is
  127. * {@link XMLGregorianCalendar }
  128. *
  129. */
  130. public void setEmergencyStartTime(XMLGregorianCalendar value) {
  131. this.emergencyStartTime = value;
  132. }
  133. /**
  134. * Gets the value of the countStartTime property.
  135. *
  136. * @return
  137. * possible object is
  138. * {@link XMLGregorianCalendar }
  139. *
  140. */
  141. public XMLGregorianCalendar getCountStartTime() {
  142. return countStartTime;
  143. }
  144. /**
  145. * Sets the value of the countStartTime property.
  146. *
  147. * @param value
  148. * allowed object is
  149. * {@link XMLGregorianCalendar }
  150. *
  151. */
  152. public void setCountStartTime(XMLGregorianCalendar value) {
  153. this.countStartTime = value;
  154. }
  155. /**
  156. * Gets the value of the countIntervalTime property.
  157. *
  158. * @return
  159. * possible object is
  160. * {@link String }
  161. *
  162. */
  163. public String getCountIntervalTime() {
  164. return countIntervalTime;
  165. }
  166. /**
  167. * Sets the value of the countIntervalTime property.
  168. *
  169. * @param value
  170. * allowed object is
  171. * {@link String }
  172. *
  173. */
  174. public void setCountIntervalTime(String value) {
  175. this.countIntervalTime = value;
  176. }
  177. /**
  178. * Gets the value of the submittedAreaId property.
  179. *
  180. * @return
  181. * possible object is
  182. * {@link String }
  183. *
  184. */
  185. public String getSubmittedAreaId() {
  186. return submittedAreaId;
  187. }
  188. /**
  189. * Sets the value of the submittedAreaId property.
  190. *
  191. * @param value
  192. * allowed object is
  193. * {@link String }
  194. *
  195. */
  196. public void setSubmittedAreaId(String value) {
  197. this.submittedAreaId = value;
  198. }
  199. @Override
  200. public String toString() {
  201. return "RespondNotice [businessId=" + businessId + ", relationNoticeNo=" + relationNoticeNo
  202. + ", emergencyStartTime=" + emergencyStartTime + ", countStartTime=" + countStartTime
  203. + ", countIntervalTime=" + countIntervalTime + ", submittedAreaId=" + submittedAreaId + "]";
  204. }
  205. }