123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- package com.sinosoft.nwyj.integration.cxf.meteorological;
- 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>
- * MeteorologicalWarning complex type的Java 类
- *
- * <p>
- * 以下模式片段指定包含在此类中的预期内容。
- *
- * <pre>
- * <complexType name="MeteorologicalWarning">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="cityCountyNum" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="titile" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="typeName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="level" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="describe" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="publishDate" type="{http://www.w3.org/2001/XMLSchema}date"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "MeteorologicalWarning", propOrder = { "cityCountyNum", "titile", "typeName", "level", "describe",
- "status", "publishDate" })
- /**
- *
- * @描述 气象预警
- * @auther liuyuliang
- * @filename MeteorologicalWarning.java
- * @createDate 2016年3月16日 下午3:44:12
- */
- public class MeteorologicalWarning {
- @XmlElement(required = true)
- protected String cityCountyNum;// 行政地区ID
- @XmlElement(required = true)
- protected String titile;// 预警名称
- @XmlElement(required = true)
- protected String typeName;// 预警类型
- @XmlElement(required = true)
- protected String level;// 预警等级
- @XmlElement(required = true)
- protected String describe;// 描述
- @XmlElement(required = true)
- protected String status;// 预警状态
- @XmlElement(required = true)
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar publishDate;// 发布时间
- /**
- * 获取cityCountyNum属性的值。
- *
- * @return possible object is {@link String }
- *
- */
- public String getCityCountyNum() {
- return cityCountyNum;
- }
- /**
- * 设置cityCountyNum属性的值。
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setCityCountyNum(String value) {
- this.cityCountyNum = value;
- }
- /**
- * 获取titile属性的值。
- *
- * @return possible object is {@link String }
- *
- */
- public String getTitile() {
- return titile;
- }
- /**
- * 设置titile属性的值。
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setTitile(String value) {
- this.titile = value;
- }
- /**
- * 获取typeName属性的值。
- *
- * @return possible object is {@link String }
- *
- */
- public String getTypeName() {
- return typeName;
- }
- /**
- * 设置typeName属性的值。
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setTypeName(String value) {
- this.typeName = value;
- }
- /**
- * 获取level属性的值。
- *
- * @return possible object is {@link String }
- *
- */
- public String getLevel() {
- return level;
- }
- /**
- * 设置level属性的值。
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setLevel(String value) {
- this.level = value;
- }
- /**
- * 获取describe属性的值。
- *
- * @return possible object is {@link String }
- *
- */
- public String getDescribe() {
- return describe;
- }
- /**
- * 设置describe属性的值。
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setDescribe(String value) {
- this.describe = value;
- }
- /**
- * 获取status属性的值。
- *
- * @return possible object is {@link String }
- *
- */
- public String getStatus() {
- return status;
- }
- /**
- * 设置status属性的值。
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setStatus(String value) {
- this.status = value;
- }
- /**
- * 获取publishDate属性的值。
- *
- * @return possible object is {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getPublishDate() {
- return publishDate;
- }
- /**
- * 设置publishDate属性的值。
- *
- * @param value
- * allowed object is {@link XMLGregorianCalendar }
- *
- */
- public void setPublishDate(XMLGregorianCalendar value) {
- this.publishDate = value;
- }
- }
|