using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Model.HengTaiModel { /// /// 收益互换查询衡泰数据库返回 /// public class IRDbRespBase { [JsonProperty("header")] public string Header { get; set; } [JsonProperty("record")] public List 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; } } }