123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679 |
- using CZFW.Core;
- using CZFW.Core.Security;
- using CZFW.Framework.Model;
- using CZKJ.GBRS2.Interface;
- using CZKJ.GBRS2.Model;
- using CZKJ.GBRS2.ViewModel;
- using Microsoft.EntityFrameworkCore;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Text;
- using System.Threading;
- using System.Threading.Tasks;
- using System.Linq;
- namespace CZKJ.GBRS2.Logic
- {
- public class CustomerQueryLogic : ICustomerQuery
- {
- CZDbContext dbContext = CZHttpContext.ServiceProvider.GetService(typeof(CZDbContext)) as CZDbContext;
- public async Task<string> GetHuaWeiToken(string contNo)
- {
- string getToeknUrl = $"{ConfigHelper.GetValue<string>("HuaWei:Url")}/apply/token?appId={ConfigHelper.GetValue<string>("HuaWei:AppId")}&appKey={ConfigHelper.GetValue<string>("HuaWei:AppKey")}";
- var responseString = await HttpHelper.HttpPostAsync(getToeknUrl);
- SentParams para = new SentParams();
- TransData model = new TransData();
- model.ContentData = new ContentData { BusinessNo = contNo, BusinessType = "1", PrintType = "1" };
- model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY033", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- para.TransData = model;
- string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- var jobJect = JObject.Parse(res)["TransData"]["ContentData"];
- if (jobJect == null)
- {
- return "";
- }
- DownLoadPolicy downLoadPolicy = JsonConvert.DeserializeObject<DownLoadPolicy>(jobJect.ToString());
- CoreHuaWeiFile coreFileInfo = new CoreHuaWeiFile();
- HuaWeiTokenModel toekenModel = JsonConvert.DeserializeObject<HuaWeiTokenModel>(responseString);
- string getDownLoadUrl = $"{ConfigHelper.GetValue<string>("HuaWei:Url")}/apply/download?objectId={downLoadPolicy.EleDownloadObjectId}&token={toekenModel.Data.Token}";
- var downLoadReponse = await HttpHelper.HttpPostAsync(getDownLoadUrl);
- return downLoadReponse;
- }
- /// <summary>
- /// 客户号获取名下保单列表
- /// </summary>
- /// <param name="userId"></param>
- /// <param name="cutomerType"></param>
- /// <returns></returns>
- public async Task<string> GetListByUserId(string userId, string cutomerType = "0")
- {
- SentParams para = new SentParams();
- TransData model = new TransData();
- //CutomerNo用户号,CustomerType:用户类型
- model.ContentData = new ContentData { CustomerNo = userId, CustomerType = cutomerType };
- model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY003", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- para.TransData = model;
- string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- SentParams resultPara = JsonConvert.DeserializeObject<SentParams>(res);
- if (resultPara.TransData.HeadData.ERR_MEASSGE != "交易成功")
- {
- return null;
- }
- return res;
- }
- /// <summary>
- /// 保单号查询保单信息
- /// </summary>
- /// <param name="ContNo"></param>
- /// <returns></returns>
- public async Task<InsurancePolicyModel> GetPolicyModel(string ContNo)
- {
- InsurancePolicyModel viewModel = new InsurancePolicyModel();
- SentParams para = new SentParams();
- TransData model = new TransData();
- model.ContentData = new ContentData { ContNo = ContNo };
- model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY004", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- para.TransData = model;
- string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- var jobJect = JObject.Parse(res)["TransData"]["ContentData"];
- if (jobJect != null)
- {
- viewModel = JsonConvert.DeserializeObject<InsurancePolicyModel>(jobJect.ToString());
- }
- return viewModel;
- }
- /// <summary>
- /// 保单号查询险种
- /// 已停用
- ///
- /// </summary>
- /// <param name="ContNo"></param>
- /// <returns></returns>
- public async Task<string> GetPolNo(string ContNo)
- {
- SentParams para = new SentParams();
- TransData model = new TransData();
- model.ContentData = new ContentData { CustomerNo = ConfigHelper.GetValue<string>("CoreQuery:CustomerNo"), CustomerType = ConfigHelper.GetValue<string>("CoreQuery:CustomerType") };
- model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY003", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- para.TransData = model;
- string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- string url = $"http://10.237.55.185:9002/officialWebsiteHttpServer?sign=" + sign;
- var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- return res;
- }
- /// <summary>
- /// 获取保单概要列表用于用户登录进来时展示
- /// </summary>
- /// <param name="userId"></param>
- /// <returns></returns>
- public async Task<List<ReportNoList>> GetReportNoList(List<string> list)
- {
- List<ReportNoList> result = new List<ReportNoList>();
- List<ReportNoListModel> model = new List<ReportNoListModel>();
- foreach (var element in list)
- {
- ReportNoListModel entity = new ReportNoListModel();
- var queryResult = await GetPolicyModel(element);
- entity.ContNo = element;
- entity.StartTime =Convert.ToDateTime( queryResult.CValiDate); //DateTime.ParseExact(queryResult.CValiDate, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
- switch (queryResult.AppFlag)
- {
- case "0":
- entity.State = "投保中";
- break;
- case "1":
- entity.State = "有效";
- break;
- case "4":
- entity.State = "终止";
- break;
- case "5":
- entity.State = "中止";
- break;
- case "9":
- entity.State = "续期中";
- break;
- }
- model.Add(entity);
- }
- foreach (var item in model.OrderByDescending(x=>x.StartTime))
- {
- ReportNoList entity = new ReportNoList();
- entity.StartTime = item.StartTime.ToString("yyyy-MM-dd");
- entity.State = item.State;
- entity.ContNo = item.ContNo;
- result.Add(entity);
- }
- return result;
- }
- /// <summary>
- /// 泛型查询
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="contNo"></param>
- /// <param name="transId"></param>
- /// <returns></returns>
- public async Task<T> HttpMenth<T>(string contNo, string transId)
- {
- SentParams para = new SentParams();
- TransData model = new TransData();
- if (transId == "QRY006")
- {
- model.ContentData = new ContentData { PolNo = contNo };
- }
- else
- {
- model.ContentData = new ContentData { ContNo = contNo };
- }
- model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = transId, TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- para.TransData = model;
- string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- var res = await HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- JToken jobJect = null;
- //Object thisLock = new Object();
- if (transId == "QRY004" || transId == "QRY007" || transId == "QRY006")
- {
- jobJect = JObject.Parse(res)["TransData"]["ContentData"];
- //if (transId == "QRY004")
- //{
- // lock (thisLock)
- // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO insurancepolicy(`InsurancePolicyJson`)VALUES({res})");
- //}
- //else if (transId == "QRY007")
- //{
- // lock (thisLock)
- // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO policyholder(`PolicyHolderJson`)VALUES({res})");
- //}
- //else if (transId == "QRY006")
- //{
- // lock (thisLock)
- // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO inquiryinsurancepolicy(`InquiryInsurancePolicyJson`)VALUES({res})");
- //}
- }
- else if (transId == "QRY008")
- {
- jobJect = JObject.Parse(res)["TransData"]["ContentData"]["InsuredInfos"];
- //lock (thisLock)
- // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO policyinsured(`PolicyInsuredJson`)VALUES({res})");
- }
- else if (transId == "QRY005")
- {
- try {
- jobJect = JObject.Parse(res)["TransData"]["ContentData"]["PolNos"];
- }
- catch (Exception ex)
- {
- jobJect = null;
- }
-
-
- }
- else
- {
- jobJect = JObject.Parse(res)["TransData"]["ContentData"]["BnfInfos"];
- //lock (thisLock)
- // dbContext.Database.ExecuteSqlCommandAsync($"INSERT INTO policybeneficiary(`PolicyBeneficiaryJson`)VALUES({res})");
- }
- if (jobJect != null)
- {
- string str = jobJect.ToString();
- T viewModel = JsonConvert.DeserializeObject<T>(jobJect.ToString());
- return viewModel;
- }
- return default(T);
- }
- /// <summary>
- /// 保单号查询保单详情
- /// </summary>
- /// <param name="contNo"></param>
- /// <returns></returns>
- public async Task<ReportQueryViewModel> QueryReprot(string contNo)
- {
- if (string.IsNullOrWhiteSpace(contNo))
- {
- return null;
- }
- ReportQueryViewModel resultViewModel = new ReportQueryViewModel();
- var res004 = HttpMenth<InsurancePolicyModel>(contNo, "QRY004");
- var res009 = HttpMenth<List<PolicyBeneficiaryModel>>(contNo, "QRY009");
- var res007 = HttpMenth<PolicyHolderModel>(contNo, "QRY007");
- var res008 = HttpMenth<List<PolicyInsuredModel>>(contNo, "QRY008");
- var res005 = HttpMenth<List<Pol>>(contNo, "QRY005");
- resultViewModel.InsurancePolicyModel = await res004;
- if (resultViewModel.InsurancePolicyModel == null)
- {
- return resultViewModel;
- }
- resultViewModel.PolicyBeneficiaryModel = await res009;
- resultViewModel.PolicyHolderModel = await res007;
- resultViewModel.PolicyInsuredModel = await res008;
- var PolNos = await res005;
- if (PolNos != null)
- {
- resultViewModel.PolNo = PolNos;
- foreach (var element in resultViewModel.PolNo)
- {
- var entity = await HttpMenth<InquiryInsurancePolicyModel>(element.PolNo, "QRY006");
- entity.AddFeeRate = ChangeDataToD(entity.AddFeeRate);
- if (entity.RiskCode == "0012" || entity.RiskCode == "0017")
- {
- entity.IsEY = true;
- }
- resultViewModel.inquiryInsurancePolicyModels.Add(entity);
- }
- }
- return resultViewModel;
- }
- public async Task<ReportQueryViewModel> Transformation(string contNo)
- {
- var data = await QueryReprot(contNo);
- if (data.InsurancePolicyModel == null)
- {
- return data;
- }
- foreach (var item in data.inquiryInsurancePolicyModels)
- {
- if (!string.IsNullOrEmpty(item.CValiDate))
- {
- item.CValiDate = item.CValiDate; //DateTime.ParseExact(item.CValiDate, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
- }
- else
- {
- item.CValiDate = "";
- }
- if (item.MainPolNo == item.PolNo)
- {
- data.MianPolicyName = item.RiskName;
- if (item.RiskCode == "0012" || item.RiskCode == "0017")
- {
- data.IsEY = true;
- }
- }
- }
- //保单信息生效日期转换
- if (!string.IsNullOrEmpty(data.InsurancePolicyModel.CValiDate))
- {
- data.InsurancePolicyModel.CValiDate = data.InsurancePolicyModel.CValiDate;//DateTime.ParseExact(data.InsurancePolicyModel.CValiDate, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
- }
- else
- {
- data.InsurancePolicyModel.CValiDate = "";
- }
- //保单回执
- if (string.IsNullOrEmpty(data.InsurancePolicyModel.CustomGetPolDate))
- {
- data.InsurancePolicyModel.CustomGetPolDate = "";
- }
- ///投保人生日转换
- ///
- if (!string.IsNullOrEmpty(data.PolicyHolderModel.AppntBirthday))
- {
- data.PolicyHolderModel.AppntBirthday = data.PolicyHolderModel.AppntBirthday;//DateTime.ParseExact(data.PolicyHolderModel.AppntBirthday, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
- }
- else
- {
- data.PolicyHolderModel.AppntBirthday = "";
- }
- switch (data.PolicyHolderModel.AppntSex)
- {
- case "0":
- data.PolicyHolderModel.AppntSex = "男";
- break;
- case "1":
- data.PolicyHolderModel.AppntSex = "女";
- break;
- case "2":
- data.PolicyHolderModel.AppntSex = "不祥";
- break;
- }
- switch (data.InsurancePolicyModel.InHesitationFlag)
- {
- case "0":
- data.InsurancePolicyModel.InHesitationFlag = "犹豫期内";
- break;
- case "1":
- data.InsurancePolicyModel.InHesitationFlag = "犹豫期外";
- break;
- }
- switch (data.PolicyHolderModel.IDType)
- {
- case "0":
- data.PolicyHolderModel.IDType = "身份证";
- break;
- case "1":
- data.PolicyHolderModel.IDType = "护照";
- break;
- case "2":
- data.PolicyHolderModel.IDType = "军人身份证";
- break;
- case "3":
- data.PolicyHolderModel.IDType = "户口本";
- break;
- case "4":
- data.PolicyHolderModel.IDType = "通行证";
- break;
- case "5":
- data.PolicyHolderModel.IDType = "出生证明";
- break;
- case "6":
- data.PolicyHolderModel.IDType = "外国人永久居留身份证";
- break;
- }
- if (!string.IsNullOrEmpty(data.PolicyHolderModel.IDNo) && data.PolicyHolderModel.IDNo.Length == 18)
- {
- data.PolicyHolderModel.IDNo = data.PolicyHolderModel.IDNo.Substring(0, 6) + "********" + data.PolicyHolderModel.IDNo.Substring(14, 4);
- }
- else
- {
- data.PolicyHolderModel.IDNo = "";
- }
- if (!string.IsNullOrEmpty(data.PolicyHolderModel.Mobile))
- {
- data.PolicyHolderModel.Mobile = data.PolicyHolderModel.Mobile.Substring(0, 3) + "****" + data.PolicyHolderModel.Mobile.Substring(7, 4);
- }
- else
- {
- data.PolicyHolderModel.Mobile = "";
- }
- foreach (var item in data.PolicyInsuredModel)
- {
- if (!string.IsNullOrEmpty(item.IDNo) && item.IDNo.Length == 18)
- {
- item.IDNo = item.IDNo.Substring(0, 6) + "********" + item.IDNo.Substring(14, 4);
- }
- else
- {
- item.IDNo = "";
- }
- if (!string.IsNullOrEmpty(item.Mobile))
- {
- item.Mobile = item.Mobile.Substring(0, 3) + "****" + item.Mobile.Substring(7, 4);
- }
- else
- {
- item.Mobile = "";
- }
- //被保人生日转换
- if (!string.IsNullOrEmpty(item.Birthday))
- {
- item.Birthday = item.Birthday;//DateTime.ParseExact(item.Birthday, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
- }
- else
- {
- item.Birthday = "";
- }
- switch (item.Sex)
- {
- case "0":
- item.Sex = "男";
- break;
- case "1":
- item.Sex = "女";
- break;
- case "2":
- item.Sex = "不祥";
- break;
- }
- switch (item.IDType)
- {
- case "0":
- item.IDType = "身份证";
- break;
- case "1":
- item.IDType = "护照";
- break;
- case "2":
- item.IDType = "军人身份证";
- break;
- case "3":
- item.IDType = "户口本";
- break;
- case "4":
- item.IDType = "通行证";
- break;
- case "5":
- item.IDType = "出生证明";
- break;
- case "6":
- item.IDType = "外国人永久居留身份证";
- break;
- }
- switch (item.RelationToAppnt)
- {
- case "00":
- item.RelationToAppnt = "本人";
- break;
- case "01":
- item.RelationToAppnt = "配偶";
- break;
- case "02":
- item.RelationToAppnt = "子女";
- break;
- case "03":
- item.RelationToAppnt = "父母";
- break;
- case "04":
- item.RelationToAppnt = "亲属";
- break;
- case "05":
- item.RelationToAppnt = "雇佣关系";
- break;
- }
- }
- foreach (var item in data.PolicyBeneficiaryModel)
- {
- if (!string.IsNullOrEmpty(item.IDNo) && item.IDNo.Length == 18)
- {
- item.IDNo = item.IDNo.Substring(0, 6) + "********" + item.IDNo.Substring(14, 4);
- }
- else
- {
- item.IDNo = "";
- }
- if (!string.IsNullOrEmpty(item.Mobile))
- {
- item.Mobile = item.Mobile.Substring(0, 3) + "****" + item.Mobile.Substring(7, 4);
- }
- else
- {
- item.Mobile = "";
- }
- //受益人生日转换
- if (!string.IsNullOrEmpty(item.Birthday))
- {
- item.Birthday = item.Birthday;// DateTime.ParseExact(item.Birthday, "ddd MMM dd HH:mm:ss CST yyyy", new CultureInfo("en-us")).ToString("yyyy-MM-dd");
- }
- else
- {
- item.Birthday = "";
- }
- switch (item.Sex)
- {
- case "0":
- item.Sex = "男";
- break;
- case "1":
- item.Sex = "女";
- break;
- case "2":
- item.Sex = "不祥";
- break;
- }
- switch (item.IDType)
- {
- case "0":
- item.IDType = "身份证";
- break;
- case "1":
- item.IDType = "护照";
- break;
- case "2":
- item.IDType = "军人身份证";
- break;
- case "3":
- item.IDType = "户口本";
- break;
- case "4":
- item.IDType = "通行证";
- break;
- case "5":
- item.IDType = "出生证明";
- break;
- case "6":
- item.IDType = "外国人永久居留身份证";
- break;
- }
- switch (item.RelationToInsured)
- {
- case "00":
- item.RelationToInsured = "本人";
- break;
- case "01":
- item.RelationToInsured = "配偶";
- break;
- case "02":
- item.RelationToInsured = "子女";
- break;
- case "03":
- item.RelationToInsured = "父母";
- break;
- case "04":
- item.RelationToInsured = "亲属";
- break;
- case "05":
- item.RelationToInsured = "雇佣关系";
- break;
- }
- }
- return data;
- }
- private string ChangeDataToD(string strData)
- {
- Decimal dData = 0.0M;
- if (strData.Contains("E"))
- {
- dData = Convert.ToDecimal(Decimal.Parse(strData.ToString(), System.Globalization.NumberStyles.Float));
- }
- return dData.ToString();
- }
- #region 旧版本
- /// <summary>
- /// 根据保单号查询保单详情
- /// </summary>
- /// <param name="ContNo"></param>
- /// <returns></returns>
- ///
- //public ReportQueryViewModel QueryReprot(string ContNo)
- //{
- // if (string.IsNullOrWhiteSpace(ContNo))
- // {
- // return null;
- // }
- // ReportQueryViewModel resultViewModel = new ReportQueryViewModel();
- // HttpMenth<InsurancePolicyModel>(ContNo, "QRY004");
- // #region 查询保单信息
- // SentParams para = new SentParams();
- // TransData model = new TransData();
- // model.ContentData = new ContentData { ContNo = ContNo};
- // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY004", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- // para.TransData = model;
- // string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- // string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- // var res = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- // resultViewModel.InsurancePolicyModel = JsonConvert.DeserializeObject<InsurancePolicyModel>(res);
- // #endregion
- // #region 查询受益人信息
- // SentParams para1 = new SentParams();
- // TransData model1 = new TransData();
- // model.ContentData = new ContentData { ContNo = ContNo };
- // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY009", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- // para.TransData = model;
- // string sign1 = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- // string url1 = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- // var res1 = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- // resultViewModel.PolicyBeneficiaryModel = JsonConvert.DeserializeObject<List<PolicyBeneficiaryModel>>(res1);
- // #endregion
- // #region 查询投保人信息
- // SentParams para2 = new SentParams();
- // TransData model2 = new TransData();
- // model.ContentData = new ContentData { ContNo = ContNo };
- // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY007", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- // para.TransData = model;
- // string sign2 = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- // string url2 = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- // var res2 = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- // resultViewModel.PolicyHolderModel = JsonConvert.DeserializeObject< List<PolicyHolderModel>>(res2);
- // #endregion
- // #region 查询被保人
- // SentParams para3 = new SentParams();
- // TransData model3 = new TransData();
- // model.ContentData = new ContentData { ContNo = ContNo };
- // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY008", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- // para.TransData = model;
- // string sign3 = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- // string url3 = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- // var res3 = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- // resultViewModel.PolicyInsuredModel = JsonConvert.DeserializeObject< List<PolicyInsuredModel>>(res3);
- // #endregion
- // #region 根据保单号查询险种
- // SentParams para4 = new SentParams();
- // TransData model4 = new TransData();
- // model.ContentData = new ContentData { ContNo = ContNo };
- // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY009", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
- // para.TransData = model;
- // string sign4 = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
- // string url4 = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
- // var res4 = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
- // resultViewModel.PolNo = JsonConvert.DeserializeObject<List<string>>(res4);
- // #endregion
- // return resultViewModel;
- //}
- #endregion
- }
- }
|