eleme.openapi.sdk.api.entity.product.RenovateDescriptionDto Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.product;
import eleme.openapi.sdk.api.enumeration.product.*;
import eleme.openapi.sdk.api.entity.product.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class RenovateDescriptionDto{
/**
* 商品globalId
*/
private Long itemGlobalId;
public Long getItemGlobalId() {
return itemGlobalId;
}
public void setItemGlobalId(Long itemGlobalId) {
this.itemGlobalId = itemGlobalId;
}
/**
* 老商品ID
*/
private Long vfoodId;
public Long getVfoodId() {
return vfoodId;
}
public void setVfoodId(Long vfoodId) {
this.vfoodId = vfoodId;
}
/**
* 商品名称
*/
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* 图片Url
*/
private String imageUrl;
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
/**
* 最近销量
*/
private Integer recentSales;
public Integer getRecentSales() {
return recentSales;
}
public void setRecentSales(Integer recentSales) {
this.recentSales = recentSales;
}
/**
* 商品创建时间
*/
@JsonFormat(locale = "zh" , timezone="GMT+8")
private Date createAt;
public Date getCreateAt() {
return createAt;
}
public void setCreateAt(Date createAt) {
this.createAt = createAt;
}
/**
* 问题描述
*/
private List problemDescs;
public List getProblemDescs() {
return problemDescs;
}
public void setProblemDescs(List problemDescs) {
this.problemDescs = problemDescs;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy