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

24 lines
518 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model
{
/// <summary>
/// TRS对冲交易撤单请求
/// </summary>
public class HedgingOrderCancelReq
{
/// <summary>
/// 客户委托成交id
/// </summary>
public long trs_deal_id { get; set; }
/// <summary>
/// 对冲交易编号
/// </summary>
public string trs_deal_no { get; set; }
}
}