TG.WXCRM.V4/Model/Entity/QH_TRANSACTIONDETAIL_CACHE.cs

127 lines
2.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
/// <summary>
/// 所属组
/// </summary>
[StringLength(50)]
public string TEAM { get; set; }
/// <summary>
/// 交易所
/// </summary>
[StringLength(50)]
public string EXCHANGE { get; set; }
/// <summary>
/// 账户
/// </summary>
[StringLength(50)]
public string USERACCOUNT { get; set; }
/// <summary>
/// 账户名称
/// </summary>
[StringLength(50)]
public string ACCOUNTNAME { get; set; }
/// <summary>
/// 品种
/// </summary>
[StringLength(50)]
public string PRODUCTNAME { get; set; }
/// <summary>
/// 合约代码
/// </summary>
[StringLength(50)]
public string CONTRACTCODE { get; set; }
/// <summary>
/// 买卖
/// </summary>
public decimal? MM { get; set; }
/// <summary>
/// 开平
/// </summary>
public decimal? KP { get; set; }
/// <summary>
/// 成交编号
/// </summary>
[StringLength(50)]
public string CJBH { get; set; }
/// <summary>
/// 成交价格
/// </summary>
public decimal? CJJG { get; set; }
/// <summary>
/// 初始成交日期格式20180413
/// </summary>
[StringLength(20)]
public string INITCJRQ { get; set; }
/// <summary>
/// 初始成交时间165543
/// </summary>
[StringLength(20)]
public string INITCJSJ { get; set; }
/// <summary>
/// 成交日期
/// </summary>
public DateTime? CJRQ { get; set; }
/// <summary>
/// 成交数量
/// </summary>
public decimal? CJSL { get; set; }
/// <summary>
/// 报单编号
/// </summary>
[StringLength(50)]
public string BDBH { get; set; }
public decimal? TB { get; set; }
/// <summary>
/// 账户手续费
/// </summary>
public decimal? ZHSXF { get; set; }
/// <summary>
/// 交易所手续费
/// </summary>
public decimal? JYSSXF { get; set; }
[StringLength(20)]
public string RESID { get; set; }
/// <summary>
/// 写入时间
/// </summary>
public DateTime? CTIME { get; set; }
/// <summary>
/// 佣金
/// </summary>
public decimal? COMMISSION { get; set; }
}
}