You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
602 B
44 lines
602 B
package com.hfkj.model;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class GoodsInfoModel {
|
|
/**
|
|
* 商品标题
|
|
*/
|
|
String title;
|
|
/**
|
|
* 商品短标题
|
|
*/
|
|
String shortTitle;
|
|
/**
|
|
* 商品主图
|
|
*/
|
|
String pictUrl;
|
|
/**
|
|
* 店铺信息
|
|
*/
|
|
String shopTitle;
|
|
/**
|
|
* 商品小图列表
|
|
*/
|
|
List<String> smallImages;
|
|
/**
|
|
* 地区
|
|
*/
|
|
String provCity;
|
|
|
|
/**
|
|
* 元宝数量
|
|
*/
|
|
BigDecimal ingot;
|
|
|
|
/**
|
|
* 库存
|
|
*/
|
|
String annualVol;
|
|
}
|
|
|