using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YouZanSDKStandard.Api.Domain { /// /// 商品列表信息 /// [Serializable] public class ItemListOpenModel { public string page_url { get; set; } public string sub_title { get; set; } public string share_detail { get; set; } public string origin { get; set; } public string share_icon { get; set; } public string share_title { get; set; } /// /// 商品的数字id /// public string item_id { get; set; } /// /// 商品别名,是一串字符 /// public string alias { get; set; } /// /// 商品标题 /// public string title { get; set; } /// /// 价格,单位分 /// public string price { get; set; } /// /// 商品类型 /// public string item_type { get; set; } /// /// 商家编码,商家给商品设置的商家编码 /// public string item_no { get; set; } /// /// 总库存 /// public string quantity { get; set; } /// /// 运费类型,1 是统一运费,2是运费模板 /// public string post_type { get; set; } /// /// 运费,单位分。当post_type为1时的运费 /// public string post_fee { get; set; } /// /// 运费模板信息,当post_type为2时有值 /// public object delivery_template { get; set; } /// /// 创建时间 /// public string created_time { get; set; } /// /// 更新时间 /// public string update_time { get; set; } /// /// 商品详情链接 /// public string detail_url { get; set; } /// /// 商家排序字段 /// public string num { get; set; } /// /// 商品图片 /// public ItemImageOpenModel[] item_imgs { get; set; } /// /// 图片链接 /// public string image { get; set; } } }