using System; using System.Collections.Generic; using System.Text; namespace YouZanSDKStandard.Api.Domain { public class YouZanItemCommonSearchDomain { /// /// 商品信息集合 /// public List items { get; set; } public YouZanItemCommonSearchDomainPaginator paginator { get; set; } } public class YouZanItemCommonSearchDomainItems { /// /// 商品上下架状态;0=仓库中(商品下架会在仓库中),1=出售中和已售罄;不传默认查询所有信息; /// public int is_display { get; set; } /// /// 商品价格,单位:分 /// public long price { get; set; } /// /// 所属一级分组ID列表 /// public List tag_ids { get; set; } /// /// 运费,单位:分 /// public long postage { get; set; } /// /// 商品销售状态,枚举值说明:0-非有赞平台出售商品,1-全部在售商品;2-售罄状态为全部售罄;3-售罄状态为部分售罄; /// public int sold_status { get; set; } /// /// 是否虚拟商品,使用item_types和s_virtual判断商品类型 /// public int is_virtual { get; set; } /// /// 商品别名 /// public string alias { get; set; } /// /// 分享描述 /// public string summary { get; set; } /// /// 商品标题 /// public string title { get; set; } /// /// 商品Id /// public long item_id { get; set; } /// /// 商品编码 /// public string goods_no { get; set; } /// /// 商品总库存 /// public long total_stock { get; set; } /// /// 商品卖点信息 /// public string sell_point { get; set; } } public class YouZanItemCommonSearchDomainPaginator { /// /// 页数 /// public int page_no { get; set; } /// /// 总条数 /// public int total_count { get; set; } /// /// 页码大小 /// public int page_size { get; set; } } }