using System; using System.Collections.Generic; using System.Text; using Edu.Common.Enum; using VT.FW.DB; namespace Edu.Model.Entity.Sell { /// /// 点数商品 /// [Serializable] [DB(ConnectionName = "DefaultConnection")] public class RB_Point_Goods { public int ID { get; set; } /// /// 排序 /// public int? Sort { get; set; } /// /// 售价 /// public decimal? SellingPrice { get; set; } /// /// 原价 /// public decimal? OriginalPrice { get; set; } /// /// 成本价格 /// public decimal? CostPrice { get; set; } /// /// 点数 /// public int PonitNum { get; set; } /// /// 赠送点数 0-不赠送,>0赠送 /// public int GivePoint { get; set; } /// /// 名称 /// public string GoodsName { get; set; } /// /// 集团编号 /// public int Group_Id { get; set; } /// /// 学校编号 /// public int School_Id { get; set; } /// /// 创建人 /// public int CreateBy { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 修改人 /// public int UpdateBy { get; set; } /// /// 更新时间 /// public DateTime UpdateTime { get; set; } /// /// 删除状态(0-正常,1-禁用) /// public DateStateEnum Status { get; set; } } }