Files
zszq-trs/Framework/YLErp.Core/Models/TradeConfirmContractGroupModel.cs
T
2024-05-09 14:06:26 +08:00

19 lines
448 B
C#

namespace YLErp.Models
{
public class TradeConfirmContractGroupModel
{
public int ClientId { get; set; }
public DateTime ValueDate { get; set; }
public string UnderlyingType { get; set; }
public string BuySell { get; set; }
public string UnderlyingTypeShort
{
get
{
return UnderlyingType == "Stock" ? "STO" : "FUT";
}
}
}
}