using System; namespace CallCenterApi.Model { /// /// 订单商品表 /// [Serializable] public partial class order_goods { public order_goods() { } #region Model private int _id; private int _channel_id = 0; private int _article_id = 0; private int _order_id = 0; private string _goods_no = string.Empty; private string _goods_title = string.Empty; private string _img_url = string.Empty; private decimal _goods_price = 0M; private decimal _real_price = 0M; private int _quantity = 0; private int _point = 0; /// /// 自增ID /// public int id { set { _id = value; } get { return _id; } } /// /// 频道ID /// public int channel_id { set { _channel_id = value; } get { return _channel_id; } } /// /// 文章ID /// public int article_id { set { _article_id = value; } get { return _article_id; } } /// /// 订单ID /// public int order_id { set { _order_id = value; } get { return _order_id; } } /// /// 商品货号 /// public string goods_no { set { _goods_no = value; } get { return _goods_no; } } /// /// 商品标题 /// public string goods_title { set { _goods_title = value; } get { return _goods_title; } } /// /// 商品图片 /// public string img_url { set { _img_url = value; } get { return _img_url; } } /// /// 商品价格 /// public decimal goods_price { set { _goods_price = value; } get { return _goods_price; } } /// /// 实际价格 /// public decimal real_price { set { _real_price = value; } get { return _real_price; } } /// /// 订购数量 /// public int quantity { set { _quantity = value; } get { return _quantity; } } /// /// 积分,正数赠送|负数消费 /// public int point { set { _point = value; } get { return _point; } } #endregion } }