IdentityVerifyProcess.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. using Newtonsoft.Json.Linq;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PTMedicalInsurance.Business
  8. {
  9. class IdentityVerifyProcess : AbstractProcess
  10. {
  11. public override CallResult Process(JObject input)
  12. {
  13. //if (hBus.IdentityVerify("2207", out errMsg) != 0)
  14. //{
  15. // rtnResult = JsonHelper.setExceptionJson(-1, "调用门诊正式结算2207前,身份核验1192失败", errMsg).ToString();
  16. // return rtnResult;
  17. //}
  18. //else
  19. //{
  20. // JObject joDataExp = new JObject();
  21. // joDataExp.Add("cardtoken", Global.pat.card.Cardtoken);
  22. // joDataExp.Add("acct_payamt", Global.Set.acctPay);
  23. // joDataExp.Add("elec_bill_code", "");
  24. // joDataExp.Add("elec_billno_code", "");
  25. // joDataExp.Add("elec_bill_chkcode", "");
  26. // joSettlement["exp_content"] = joDataExp;
  27. //}
  28. return Success();
  29. }
  30. }
  31. }