| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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; }
-
-
-
- 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; }
-
-
-
-
-
-
-
-
-
-
-
- public JObject output { get; set; }
- }
-
- }
|