24 lines
518 B
C#
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; }
|
|
}
|
|
}
|