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

22 lines
472 B
C#

namespace YLErp.Model
{
public class trade_swap_flow_group
{
public string UnderlyingCode { get; set; }
public double BuyLots { get; set; }
public double SellLots { get; set; }
public double Lots { get; set; }
public double SumBuySpotPrice { get; set; }
public double SumSellSpotPrice { get; set; }
public double SumSpotPrice { get; set; }
public trade_swap_flow flow { get; set; }
}
}