using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity { class BaseResult { /// /// 交易状态码 /// public int infcode { get; set; } /// /// 接收方报文ID /// public string inf_refmsgid { get; set; } /// /// 接收报文时间 /// public string refmsg_time { get; set; } /// /// 响应报文时间 /// public string respond_time { get; set; } /// /// 错误信息 /// public string err_msg { get; set; } /// /// 签名方式 /// public string signtype { get; set; } /// /// 数字签名信息 /// public string cainfo { get; set; } /// /// 渠道id /// //public string app_id { get; set; } /// /// 加密方式 /// //public string enc_type { get; set; } /// /// 交易输出 /// public JObject output { get; set; } } }