31 lines
719 B
C#
31 lines
719 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Model.HengTaiModel
|
|
{
|
|
/// <summary>
|
|
/// 收益互换查询衡泰数据库返回
|
|
/// </summary>
|
|
public class IRDbRespBase
|
|
{
|
|
[JsonProperty("header")]
|
|
public string Header { get; set; }
|
|
|
|
[JsonProperty("record")]
|
|
public List<string> Records { get; set; }
|
|
|
|
[JsonProperty("total_size")]
|
|
public string TotalSize { get; set; }
|
|
|
|
[JsonProperty("err_code")]
|
|
public string ErrorCode { get; set; }
|
|
|
|
[JsonProperty("err_msg")]
|
|
public string ErrorMessage { get; set; }
|
|
}
|
|
}
|