43 lines
971 B
C#
43 lines
971 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Core.DBModels
|
|
{
|
|
/// <summary>
|
|
/// 日终盈亏分析
|
|
/// <para>格林大华用</para>
|
|
/// </summary>
|
|
[Table("eod_scenarioanalysis")]
|
|
public class EodScenarioanalysis : DBModelBase
|
|
{
|
|
/// <summary>
|
|
/// 计算日期
|
|
/// </summary>
|
|
public DateTime ValueDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 场外交易Id
|
|
/// </summary>
|
|
public int TradeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 盈亏
|
|
/// </summary>
|
|
public double PnL { get; set; }
|
|
|
|
public double PnL1 { get; set; }
|
|
|
|
public double PnL2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计算时间
|
|
/// </summary>
|
|
public DateTime CalcDateTime { get; set; }
|
|
}
|
|
}
|