ItemPropValuesGetRequest.java :  » API » taobaoonandroid » com » taobao » api » model » Android Open Source

Android Open Source » API » taobaoonandroid 
taobaoonandroid » com » taobao » api » model » ItemPropValuesGetRequest.java
package com.taobao.api.model;

import java.util.Date;

/**
 * taobao.itempropvalues.get
 * 
 * @author Taylor xuwei840916@hotmail.com
 * @version 2008-12-22 10:19:59
 */
public class ItemPropValuesGetRequest extends TaobaoRequest{
  //
  private static final long serialVersionUID = -5449238247801721929L;
  private String fields;
  private String cid;
  private String pvs;
  private Date datetime;

  public String getFields() {
    return fields;
  }

  public void setFields(String fields) {
    this.fields = fields;
  }

  public String getCid() {
    return cid;
  }

  public void setCid(String cid) {
    this.cid = cid;
  }

  public String getPvs() {
    return pvs;
  }

  public void setPvs(String pvs) {
    this.pvs = pvs;
  }

  public Date getDatetime() {
    return datetime;
  }

  public void setDatetime(Date datetime) {
    this.datetime = datetime;
  }

}
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.