24 lines
521 B
C#
24 lines
521 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 HedgingOrderCancelResp
|
|
{
|
|
/// <summary>
|
|
/// 客户委托成交id
|
|
/// </summary>
|
|
public long trs_deal_id { get; set; }
|
|
/// <summary>
|
|
/// 0撤单成功,1:不可撤单
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
}
|
|
}
|