3cb27fb3128ee1679e66770c99817541bdb42c50.svn-base 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. package com.sinosoft.nwyj.integration.cxf.meteorological;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlElement;
  5. import javax.xml.bind.annotation.XmlSchemaType;
  6. import javax.xml.bind.annotation.XmlType;
  7. import javax.xml.datatype.XMLGregorianCalendar;
  8. /**
  9. * <p>
  10. * MeteorologicalWarning complex type的Java 类
  11. *
  12. * <p>
  13. * 以下模式片段指定包含在此类中的预期内容。
  14. *
  15. * <pre>
  16. * &lt;complexType name="MeteorologicalWarning"&gt;
  17. * &lt;complexContent&gt;
  18. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  19. * &lt;sequence&gt;
  20. * &lt;element name="cityCountyNum" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  21. * &lt;element name="titile" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  22. * &lt;element name="typeName" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  23. * &lt;element name="level" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  24. * &lt;element name="describe" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  25. * &lt;element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  26. * &lt;element name="publishDate" type="{http://www.w3.org/2001/XMLSchema}date"/&gt;
  27. * &lt;/sequence&gt;
  28. * &lt;/restriction&gt;
  29. * &lt;/complexContent&gt;
  30. * &lt;/complexType&gt;
  31. * </pre>
  32. *
  33. *
  34. */
  35. @XmlAccessorType(XmlAccessType.FIELD)
  36. @XmlType(name = "MeteorologicalWarning", propOrder = { "cityCountyNum", "titile", "typeName", "level", "describe",
  37. "status", "publishDate" })
  38. /**
  39. *
  40. * @描述 气象预警
  41. * @auther liuyuliang
  42. * @filename MeteorologicalWarning.java
  43. * @createDate 2016年3月16日 下午3:44:12
  44. */
  45. public class MeteorologicalWarning {
  46. @XmlElement(required = true)
  47. protected String cityCountyNum;// 行政地区ID
  48. @XmlElement(required = true)
  49. protected String titile;// 预警名称
  50. @XmlElement(required = true)
  51. protected String typeName;// 预警类型
  52. @XmlElement(required = true)
  53. protected String level;// 预警等级
  54. @XmlElement(required = true)
  55. protected String describe;// 描述
  56. @XmlElement(required = true)
  57. protected String status;// 预警状态
  58. @XmlElement(required = true)
  59. @XmlSchemaType(name = "date")
  60. protected XMLGregorianCalendar publishDate;// 发布时间
  61. /**
  62. * 获取cityCountyNum属性的值。
  63. *
  64. * @return possible object is {@link String }
  65. *
  66. */
  67. public String getCityCountyNum() {
  68. return cityCountyNum;
  69. }
  70. /**
  71. * 设置cityCountyNum属性的值。
  72. *
  73. * @param value
  74. * allowed object is {@link String }
  75. *
  76. */
  77. public void setCityCountyNum(String value) {
  78. this.cityCountyNum = value;
  79. }
  80. /**
  81. * 获取titile属性的值。
  82. *
  83. * @return possible object is {@link String }
  84. *
  85. */
  86. public String getTitile() {
  87. return titile;
  88. }
  89. /**
  90. * 设置titile属性的值。
  91. *
  92. * @param value
  93. * allowed object is {@link String }
  94. *
  95. */
  96. public void setTitile(String value) {
  97. this.titile = value;
  98. }
  99. /**
  100. * 获取typeName属性的值。
  101. *
  102. * @return possible object is {@link String }
  103. *
  104. */
  105. public String getTypeName() {
  106. return typeName;
  107. }
  108. /**
  109. * 设置typeName属性的值。
  110. *
  111. * @param value
  112. * allowed object is {@link String }
  113. *
  114. */
  115. public void setTypeName(String value) {
  116. this.typeName = value;
  117. }
  118. /**
  119. * 获取level属性的值。
  120. *
  121. * @return possible object is {@link String }
  122. *
  123. */
  124. public String getLevel() {
  125. return level;
  126. }
  127. /**
  128. * 设置level属性的值。
  129. *
  130. * @param value
  131. * allowed object is {@link String }
  132. *
  133. */
  134. public void setLevel(String value) {
  135. this.level = value;
  136. }
  137. /**
  138. * 获取describe属性的值。
  139. *
  140. * @return possible object is {@link String }
  141. *
  142. */
  143. public String getDescribe() {
  144. return describe;
  145. }
  146. /**
  147. * 设置describe属性的值。
  148. *
  149. * @param value
  150. * allowed object is {@link String }
  151. *
  152. */
  153. public void setDescribe(String value) {
  154. this.describe = value;
  155. }
  156. /**
  157. * 获取status属性的值。
  158. *
  159. * @return possible object is {@link String }
  160. *
  161. */
  162. public String getStatus() {
  163. return status;
  164. }
  165. /**
  166. * 设置status属性的值。
  167. *
  168. * @param value
  169. * allowed object is {@link String }
  170. *
  171. */
  172. public void setStatus(String value) {
  173. this.status = value;
  174. }
  175. /**
  176. * 获取publishDate属性的值。
  177. *
  178. * @return possible object is {@link XMLGregorianCalendar }
  179. *
  180. */
  181. public XMLGregorianCalendar getPublishDate() {
  182. return publishDate;
  183. }
  184. /**
  185. * 设置publishDate属性的值。
  186. *
  187. * @param value
  188. * allowed object is {@link XMLGregorianCalendar }
  189. *
  190. */
  191. public void setPublishDate(XMLGregorianCalendar value) {
  192. this.publishDate = value;
  193. }
  194. }