using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("Module_Price_Upgrade")] public class Module_Price_Upgrade { [Key] public int id { get; set; } public int? orderid { get; set; } public string szzyorderid { get; set; } public string moduleid { get; set; } public DateTime? starttime2 { get; set; } public DateTime? endtime2 { get; set; } public DateTime? otime2 { get; set; } public DateTime? ctime2 { get; set; } public decimal? orderPrice { get; set; } public decimal? modulePrice { get; set; } public int? midproductid { get; set; } public string username { get; set; } public int? opendays2 { get; set; } public int? isBu { get; set; } public int? isoneday { get; set; } public int? channel { get; set; } public decimal? modulePrice2 { get; set; } public int? isVirOrder { get; set; } public int? isRunRefundIns { get; set; } public int jiancount { get; set; } public int useday { get; set; } public int xuhao { get; set; } public string type { get; set; } public decimal? changePrice { get; set; } /// /// 目标订单号 /// public int? targetOrderid { get; set; } } }