using BaseOUDAL; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using YLErp.DBModels; namespace YLErp.Model { /// /// 对手方互换持仓/交易流水请求 /// public class ClientSwapPositionRequest : BaseSearchReq { /// /// /// public DateTime? ValueDate { get; set; } public DateTime? ValueDateFrom { get; set; } public int? ClientId { get; set; } public string StructureType { get; set; } } /// /// 对手方互换交易流水返回 /// 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; } } }