namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.QH_TRANSACTIONDETAIL_CACHE")] public partial class QH_TRANSACTIONDETAIL_CACHE { [Key] public decimal PKID { get; set; } /// /// 所属组 /// [StringLength(50)] public string TEAM { get; set; } /// /// 交易所 /// [StringLength(50)] public string EXCHANGE { get; set; } /// /// 账户 /// [StringLength(50)] public string USERACCOUNT { get; set; } /// /// 账户名称 /// [StringLength(50)] public string ACCOUNTNAME { get; set; } /// /// 品种 /// [StringLength(50)] public string PRODUCTNAME { get; set; } /// /// 合约代码 /// [StringLength(50)] public string CONTRACTCODE { get; set; } /// /// 买卖 /// public decimal? MM { get; set; } /// /// 开平 /// public decimal? KP { get; set; } /// /// 成交编号 /// [StringLength(50)] public string CJBH { get; set; } /// /// 成交价格 /// public decimal? CJJG { get; set; } /// /// 初始成交日期,格式20180413 /// [StringLength(20)] public string INITCJRQ { get; set; } /// /// 初始成交时间:165543 /// [StringLength(20)] public string INITCJSJ { get; set; } /// /// 成交日期 /// public DateTime? CJRQ { get; set; } /// /// 成交数量 /// public decimal? CJSL { get; set; } /// /// 报单编号 /// [StringLength(50)] public string BDBH { get; set; } public decimal? TB { get; set; } /// /// 账户手续费 /// public decimal? ZHSXF { get; set; } /// /// 交易所手续费 /// public decimal? JYSSXF { get; set; } [StringLength(20)] public string RESID { get; set; } /// /// 写入时间 /// public DateTime? CTIME { get; set; } /// /// 佣金 /// public decimal? COMMISSION { get; set; } } }