WeatherBean.java :  » Weather » yhj » com » yhj » weather » core » bean » Android Open Source

Android Open Source » Weather » yhj 
yhj » com » yhj » weather » core » bean » WeatherBean.java
package com.yhj.weather.core.bean;

/**
 * weather bean
 * @author yhj
 *
 */
public class WeatherBean {
  private String stdid;
  private String desc;
  private String ta;
  private String data;
  
  /**
   * @return the stdid
   */
  public String getStdid() {
    return stdid;
  }
  /**
   * @return the desc
   */
  public String getDesc() {
    return desc;
  }
  /**
   * @return the ta
   */
  public String getTa() {
    return ta;
  }
  /**
   * @return the data
   */
  public String getData() {
    return data;
  }
  /**
   * @param stdid the stdid to set
   */
  public void setStdid(String stdid) {
    this.stdid = stdid;
  }
  /**
   * @param desc the desc to set
   */
  public void setDesc(String desc) {
    this.desc = desc;
  }
  /**
   * @param ta the ta to set
   */
  public void setTa(String ta) {
    this.ta = ta;
  }
  /**
   * @param data the data to set
   */
  public void setData(String data) {
    this.data = data;
  }
  
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.