//===================================================================================
// Copyright (c) 2008-2008 by www.TaoBao.com, All rights reserved.
// 391# wen'er road, HangZhou, China
//
// This software is the confidential and proprietary information of
// TaoBao.com, Inc. ("Confidential Information"). You shall not disclose
// such Confidential Information and shall use it only in accordance
// with the terms of the license agreement you entered into with TaoBao.com, Inc.
//===================================================================================
// File name: ProductPropImg.java
// Author: liupo
// Date: 2008-12-17 03:43:18
// Description:
//
// Function List:
// 1.
// History:
// 1.
//===================================================================================
package com.taobao.api.model;
import java.io.File;
import java.util.Date;
/**
*
*
* @author liupo <liupo@taobao.com>
* @version 1.0
**/
public class ProductPropImg extends TaobaoModel{
//
private static final long serialVersionUID = -5655899416065863432L;
private String productId;
private String picId;
private String props; // (pid:vid)
private String url; //
private int position; //
private Date created;
private Date modified;
private File image;
public String getProductId() {
return productId;
}
public void setProductId(String productId) {
this.productId = productId;
}
public String getProps() {
return props;
}
public void setProps(String props) {
this.props = props;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public int getPosition() {
return position;
}
public void setPosition(int position) {
this.position = position;
}
public Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.created = created;
}
public Date getModified() {
return modified;
}
public void setModified(Date modified) {
this.modified = modified;
}
public File getImage() {
return image;
}
public void setImage(File image) {
this.image = image;
}
public String getPicId() {
return picId;
}
public void setPicId(String picId) {
this.picId = picId;
}
}
|