using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity { /// /// 前端请求参数对象 /// public class Request { public string code { get; set; } public string businessType; public string hospID { get; set; } public string interfaceDr { get; set; } [JsonProperty("params")] public object[] data { get; set; } [JsonProperty("pagination")] public object[] pages { get; set; } [JsonProperty("session")] public object[] session { get; set; } } }