Files
zszq-trs/YLErpDAL/Model/SwapLongShortCloseModel.cs
2024-05-09 14:06:26 +08:00

30 lines
740 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.DBModels
{
/// <summary>
/// 多空组合平仓明细
/// </summary>
public class SwapLongShortCloseModel
{
public SwapLongShortCloseModel()
{
DealInterests = new List<swap_flow_event>();
DealPositions = new List<eod_swap_position>();
}
/// <summary>
/// 平仓利息腿信息
/// </summary>
public List<swap_flow_event> DealInterests { get; set; }
/// <summary>
/// 平仓浮动腿信息
/// </summary>
public List<eod_swap_position> DealPositions { get; set; }
}
}