7868cddcaa1c5eeba18f111dc117b31e1cea2ef0.svn-base 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  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.04.26 at 10:04:46 AM CST
  6. //
  7. package com.sinosoft.nwyj.integration.cxf.waringRelieve;
  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 EmergencyWaringRelieveForm complex type.
  17. * 发布突发事件预警解除通知单
  18. * <p>The following schema fragment specifies the expected content contained within this class.
  19. *
  20. * <pre>
  21. * &lt;complexType name="EmergencyWaringRelieveForm">
  22. * &lt;complexContent>
  23. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  24. * &lt;sequence>
  25. * &lt;element name="release_unit" type="{http://www.w3.org/2001/XMLSchema}string"/>
  26. * &lt;element name="issue_person" type="{http://www.w3.org/2001/XMLSchema}string"/>
  27. * &lt;element name="early_warning_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
  28. * &lt;element name="early_warning_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
  29. * &lt;element name="relieve_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
  30. * &lt;element name="relieve_area_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
  31. * &lt;element name="relieve_reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
  32. * &lt;element name="measure_and_request" type="{http://www.w3.org/2001/XMLSchema}string"/>
  33. * &lt;element name="remark" type="{http://www.w3.org/2001/XMLSchema}string"/>
  34. * &lt;element name="attachment" type="{http://www.w3.org/2001/XMLSchema}string"/>
  35. * &lt;element name="write_dept" type="{http://www.w3.org/2001/XMLSchema}string"/>
  36. * &lt;element name="writer" type="{http://www.w3.org/2001/XMLSchema}string"/>
  37. * &lt;element name="write_time" type="{http://www.w3.org/2001/XMLSchema}date"/>
  38. * &lt;/sequence>
  39. * &lt;/restriction>
  40. * &lt;/complexContent>
  41. * &lt;/complexType>
  42. * </pre>
  43. *
  44. *
  45. */
  46. @XmlAccessorType(XmlAccessType.FIELD)
  47. @XmlType(name = "EmergencyWaringRelieveForm", propOrder = {
  48. "releaseUnit",
  49. "issuePerson",
  50. "earlyWarningName",
  51. "earlyWarningId",
  52. "relieveDate",
  53. "relieveAreaId",
  54. "relieveReason",
  55. "measureAndRequest",
  56. "remark",
  57. "attachment",
  58. "writeDept",
  59. "writer",
  60. "writeTime"
  61. })
  62. public class EmergencyWaringRelieveForm implements Serializable{
  63. /**
  64. * 序列化
  65. */
  66. private static final long serialVersionUID = 1369811076684343378L;
  67. @XmlElement(name = "release_unit", required = true)
  68. protected String releaseUnit;
  69. @XmlElement(name = "issue_person", required = true)
  70. protected String issuePerson;
  71. @XmlElement(name = "early_warning_name", required = true)
  72. protected String earlyWarningName;
  73. @XmlElement(name = "early_warning_id", required = true)
  74. protected String earlyWarningId;
  75. @XmlElement(name = "relieve_date", required = true)
  76. @XmlSchemaType(name = "dateTime")
  77. protected XMLGregorianCalendar relieveDate;
  78. @XmlElement(name = "relieve_area_id", required = true)
  79. protected String relieveAreaId;
  80. @XmlElement(name = "relieve_reason", required = true)
  81. protected String relieveReason;
  82. @XmlElement(name = "measure_and_request", required = true)
  83. protected String measureAndRequest;
  84. @XmlElement(required = true)
  85. protected String remark;
  86. @XmlElement(required = true)
  87. protected String attachment;
  88. @XmlElement(name = "write_dept", required = true)
  89. protected String writeDept;
  90. @XmlElement(required = true)
  91. protected String writer;
  92. @XmlElement(name = "write_time", required = true)
  93. @XmlSchemaType(name = "dateTime")
  94. protected XMLGregorianCalendar writeTime;
  95. /**
  96. * Gets the value of the releaseUnit property.
  97. *
  98. * @return
  99. * possible object is
  100. * {@link String }
  101. *
  102. */
  103. public String getReleaseUnit() {
  104. return releaseUnit;
  105. }
  106. /**
  107. * Sets the value of the releaseUnit property.
  108. *
  109. * @param value
  110. * allowed object is
  111. * {@link String }
  112. *
  113. */
  114. public void setReleaseUnit(String value) {
  115. this.releaseUnit = value;
  116. }
  117. /**
  118. * Gets the value of the issuePerson property.
  119. *
  120. * @return
  121. * possible object is
  122. * {@link String }
  123. *
  124. */
  125. public String getIssuePerson() {
  126. return issuePerson;
  127. }
  128. /**
  129. * Sets the value of the issuePerson property.
  130. *
  131. * @param value
  132. * allowed object is
  133. * {@link String }
  134. *
  135. */
  136. public void setIssuePerson(String value) {
  137. this.issuePerson = value;
  138. }
  139. /**
  140. * Gets the value of the earlyWarningName property.
  141. *
  142. * @return
  143. * possible object is
  144. * {@link String }
  145. *
  146. */
  147. public String getEarlyWarningName() {
  148. return earlyWarningName;
  149. }
  150. /**
  151. * Sets the value of the earlyWarningName property.
  152. *
  153. * @param value
  154. * allowed object is
  155. * {@link String }
  156. *
  157. */
  158. public void setEarlyWarningName(String value) {
  159. this.earlyWarningName = value;
  160. }
  161. /**
  162. * Gets the value of the earlyWarningId property.
  163. *
  164. * @return
  165. * possible object is
  166. * {@link String }
  167. *
  168. */
  169. public String getEarlyWarningId() {
  170. return earlyWarningId;
  171. }
  172. /**
  173. * Sets the value of the earlyWarningId property.
  174. *
  175. * @param value
  176. * allowed object is
  177. * {@link String }
  178. *
  179. */
  180. public void setEarlyWarningId(String value) {
  181. this.earlyWarningId = value;
  182. }
  183. /**
  184. * Gets the value of the relieveDate property.
  185. *
  186. * @return
  187. * possible object is
  188. * {@link XMLGregorianCalendar }
  189. *
  190. */
  191. public XMLGregorianCalendar getRelieveDate() {
  192. return relieveDate;
  193. }
  194. /**
  195. * Sets the value of the relieveDate property.
  196. *
  197. * @param value
  198. * allowed object is
  199. * {@link XMLGregorianCalendar }
  200. *
  201. */
  202. public void setRelieveDate(XMLGregorianCalendar value) {
  203. this.relieveDate = value;
  204. }
  205. /**
  206. * Gets the value of the relieveAreaId property.
  207. *
  208. * @return
  209. * possible object is
  210. * {@link String }
  211. *
  212. */
  213. public String getRelieveAreaId() {
  214. return relieveAreaId;
  215. }
  216. /**
  217. * Sets the value of the relieveAreaId property.
  218. *
  219. * @param value
  220. * allowed object is
  221. * {@link String }
  222. *
  223. */
  224. public void setRelieveAreaId(String value) {
  225. this.relieveAreaId = value;
  226. }
  227. /**
  228. * Gets the value of the relieveReason property.
  229. *
  230. * @return
  231. * possible object is
  232. * {@link String }
  233. *
  234. */
  235. public String getRelieveReason() {
  236. return relieveReason;
  237. }
  238. /**
  239. * Sets the value of the relieveReason property.
  240. *
  241. * @param value
  242. * allowed object is
  243. * {@link String }
  244. *
  245. */
  246. public void setRelieveReason(String value) {
  247. this.relieveReason = value;
  248. }
  249. /**
  250. * Gets the value of the measureAndRequest property.
  251. *
  252. * @return
  253. * possible object is
  254. * {@link String }
  255. *
  256. */
  257. public String getMeasureAndRequest() {
  258. return measureAndRequest;
  259. }
  260. /**
  261. * Sets the value of the measureAndRequest property.
  262. *
  263. * @param value
  264. * allowed object is
  265. * {@link String }
  266. *
  267. */
  268. public void setMeasureAndRequest(String value) {
  269. this.measureAndRequest = value;
  270. }
  271. /**
  272. * Gets the value of the remark property.
  273. *
  274. * @return
  275. * possible object is
  276. * {@link String }
  277. *
  278. */
  279. public String getRemark() {
  280. return remark;
  281. }
  282. /**
  283. * Sets the value of the remark property.
  284. *
  285. * @param value
  286. * allowed object is
  287. * {@link String }
  288. *
  289. */
  290. public void setRemark(String value) {
  291. this.remark = value;
  292. }
  293. /**
  294. * Gets the value of the attachment property.
  295. *
  296. * @return
  297. * possible object is
  298. * {@link String }
  299. *
  300. */
  301. public String getAttachment() {
  302. return attachment;
  303. }
  304. /**
  305. * Sets the value of the attachment property.
  306. *
  307. * @param value
  308. * allowed object is
  309. * {@link String }
  310. *
  311. */
  312. public void setAttachment(String value) {
  313. this.attachment = value;
  314. }
  315. /**
  316. * Gets the value of the writeDept property.
  317. *
  318. * @return
  319. * possible object is
  320. * {@link String }
  321. *
  322. */
  323. public String getWriteDept() {
  324. return writeDept;
  325. }
  326. /**
  327. * Sets the value of the writeDept property.
  328. *
  329. * @param value
  330. * allowed object is
  331. * {@link String }
  332. *
  333. */
  334. public void setWriteDept(String value) {
  335. this.writeDept = value;
  336. }
  337. /**
  338. * Gets the value of the writer property.
  339. *
  340. * @return
  341. * possible object is
  342. * {@link String }
  343. *
  344. */
  345. public String getWriter() {
  346. return writer;
  347. }
  348. /**
  349. * Sets the value of the writer property.
  350. *
  351. * @param value
  352. * allowed object is
  353. * {@link String }
  354. *
  355. */
  356. public void setWriter(String value) {
  357. this.writer = value;
  358. }
  359. /**
  360. * Gets the value of the writeTime property.
  361. *
  362. * @return
  363. * possible object is
  364. * {@link XMLGregorianCalendar }
  365. *
  366. */
  367. public XMLGregorianCalendar getWriteTime() {
  368. return writeTime;
  369. }
  370. /**
  371. * Sets the value of the writeTime property.
  372. *
  373. * @param value
  374. * allowed object is
  375. * {@link XMLGregorianCalendar }
  376. *
  377. */
  378. public void setWriteTime(XMLGregorianCalendar value) {
  379. this.writeTime = value;
  380. }
  381. }