| package com.xzx.gc.shop.vo; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| @Data | 
| @ApiModel(value = "QueryGoodsListVo", description = "返回") | 
| public class QueryGoodsListVo { | 
|   | 
|     private long id; | 
|     @ApiModelProperty(value="商品编号") | 
|     private String goodsNo; | 
|   | 
|     @ApiModelProperty(value="商品名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value="单位") | 
|     private String unit; | 
|   | 
|     @ApiModelProperty(value="品牌") | 
|     private String brand; | 
|   | 
|     @ApiModelProperty(value="配送方式") | 
|     private String shipping; | 
|   | 
|     @ApiModelProperty(value="缩略图") | 
|     private String thumb; | 
|   | 
|     @ApiModelProperty(value="商品详情") | 
|     private String details; | 
|   | 
|     @ApiModelProperty(value="原价",required=true) | 
|     private String originalPrice; | 
|   | 
|     @ApiModelProperty(value="现价",required=true) | 
|     private String presentPrice; | 
|   | 
|     /** | 
|      * 是否抢购 1-是 2-否 | 
|      */ | 
|     @ApiModelProperty(value="是否抢购 1/是 2/否") | 
|     private Integer isQg; | 
|   | 
|     @ApiModelProperty(value="抢购开始时间") | 
| //    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|     private String qgStartTime; | 
|   | 
|     @ApiModelProperty(value="抢购结束时间") | 
| //    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|     private String qgEndTime; | 
|   | 
|     @ApiModelProperty(value="是否上架 1/是 2/否") | 
|     private Integer isSale; | 
|   | 
|     @ApiModelProperty(value="碳排放量") | 
|     private Integer carbonEmissions; | 
|   | 
|     @ApiModelProperty(value="创建人") | 
|     private String createdBy; | 
|   | 
|     @ApiModelProperty(value="是否删除 1/是 0/否") | 
|     private short delFlag; | 
|   | 
|     @ApiModelProperty(value="创建时间") | 
| //    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|     private String createTime; | 
| } |