1234567891011121314151617181920212223242526272829303132 |
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMedicalInsurance.Business
- {
- class IdentityVerifyProcess : AbstractProcess
- {
- public override CallResult Process(JObject input)
- {
- //if (hBus.IdentityVerify("2207", out errMsg) != 0)
- //{
- // rtnResult = JsonHelper.setExceptionJson(-1, "调用门诊正式结算2207前,身份核验1192失败", errMsg).ToString();
- // return rtnResult;
- //}
- //else
- //{
- // JObject joDataExp = new JObject();
- // joDataExp.Add("cardtoken", Global.pat.card.Cardtoken);
- // joDataExp.Add("acct_payamt", Global.Set.acctPay);
- // joDataExp.Add("elec_bill_code", "");
- // joDataExp.Add("elec_billno_code", "");
- // joDataExp.Add("elec_bill_chkcode", "");
- // joSettlement["exp_content"] = joDataExp;
- //}
- return Success();
- }
- }
- }
|