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; /** *
* MeteorologicalWarning complex type的Java 类 * *
* 以下模式片段指定包含在此类中的预期内容。 * *
* <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> ** * */ @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; } }