using System; using System.Collections.Generic; using System.Text; using System.Data; using System.ComponentModel; namespace Befri.Goldhoo.Models { /// /// 购物车商品数据实体类 /// 开发人员: /// 开发日期: 2016-05 /// public partial class CartItem { /// /// 获取或设置商品编码(料号) /// public string ItemNumber { get; set; } /// /// 获取或设置商品名称 /// public string ItemName { get; set; } /// /// 获取或设置规格型号 /// public string Spec { get; set; } /// /// 获取或设置商品缩略图路径 /// public string MasterImageUrl { get; set; } /// /// 获取或设置商品主图路径 /// public string HandledUrl { get; set; } /// /// 产品类型 /// public byte ItemType { get; set; } /// /// 运费 /// public decimal? Freight { get; set; } /// /// 折扣 /// public decimal? DiscountCoef { get; set; } /// /// 库存 /// public decimal? WhQty { get; set; } /// /// 正特价 /// public byte PriceType { get; set; } /// /// 交付周期 /// public int? DeliveryCycle { get; set; } /// /// 交付周期-字符 /// public string DeliveryCycleStr { get; set; } } }