48 lines
1.8 KiB
C#
48 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Model.HengTaiModel
|
|
{
|
|
/// <summary>
|
|
/// 收益互换日终持仓查询衡泰数据库返回
|
|
/// </summary>
|
|
public class ReglRSPositionDbResp
|
|
{
|
|
public string SYSORDID { get; set; }
|
|
public string EXT_NO { get; set; }
|
|
public string BEG_DATE { get; set; }
|
|
public string NPV_DATE { get; set; }
|
|
public string TERM { get; set; }
|
|
public string START_DATE { get; set; }
|
|
public string MATER_DATE { get; set; }
|
|
public string SETDATE_TERMINATE { get; set; }
|
|
public string ORDCOUNT { get; set; }
|
|
public string CALC_AMOUNT { get; set; }
|
|
public string RT_L_AMOUNT { get; set; }
|
|
public string ZC_MARKET_VALUE { get; set; }
|
|
public string ZC_NPV { get; set; }
|
|
public string FIX_NPV { get; set; }
|
|
public string RESERVE_NPV { get; set; }
|
|
public string NPV { get; set; }
|
|
public string ZC_DRAW_AMOUNT { get; set; }
|
|
public string ZC_ACTUAL_PL { get; set; }
|
|
public string FIX_ACTUAL_PL { get; set; }
|
|
public string RESERVE_ACTUAL_PL { get; set; }
|
|
public string RESERVE_ACTUAL_PL_Y { get; set; }
|
|
public string ACTUAL_PL { get; set; }
|
|
public string ACTUAL_PL_Y { get; set; }
|
|
public string SUM_ACTUAL_PL { get; set; }
|
|
public string SUM_ACTUAL_PL_Y { get; set; }
|
|
public string ZC_INSTRUMENTID { get; set; }
|
|
public string RESERVE_FIRST { get; set; }
|
|
public string RESERVE_APPEND { get; set; }
|
|
public string RESERVE_SURPLUS { get; set; }
|
|
public string RESERVE_SURPLUS_PL { get; set; }
|
|
public string TRDFEE { get; set; }
|
|
public string CHANGE_AMOUNT { get; set; }
|
|
}
|
|
}
|