39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using BaseOUDAL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YLErp.DBModels;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
/// <summary>
|
|
/// 对手方互换持仓/交易流水请求
|
|
/// </summary>
|
|
public class ClientSwapPositionRequest : BaseSearchReq
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime? ValueDate { get; set; }
|
|
public DateTime? ValueDateFrom { get; set; }
|
|
public int? ClientId { get; set; }
|
|
|
|
public string StructureType { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 对手方互换交易流水返回
|
|
/// </summary>
|
|
public class ClientSwapPositionResponse
|
|
{
|
|
public swap_flow_event FlowEvent { get; set; }
|
|
public string SwapTradeNo { get; set; }
|
|
public int ClientId { get; set; }
|
|
public string ClientNumber { get; set; }
|
|
public string ClientName { get; set; }
|
|
public string StructureType { get; set; }
|
|
}
|
|
}
|