12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using Library;
- using MySystem.Models.Main;
- namespace MySystem
- {
- public class PosPushDataNewHelper
- {
- public readonly static PosPushDataNewHelper Instance = new PosPushDataNewHelper();
- private PosPushDataNewHelper()
- { }
- //绑定数据
- public static void Bind(MerchantAddInfo mer, PosMachinesTwo pos)
- {
- try
- {
- Dictionary<string, object> dataContent = new Dictionary<string, object>();
- dataContent.Add("pos_sn", pos.PosSn); //机具sn
- dataContent.Add("mer_no", mer.MchtNo); //商户号
- dataContent.Add("id_card", mer.IdCardNumber); //商户身份证
- dataContent.Add("mer_name", mer.CertMerchantName); //商户姓名
- dataContent.Add("mer_mobile", mer.MobilePhone); //商户手机号
- dataContent.Add("request_id", getRequestId(mer.Id, "bind")); //流水号
- dataContent.Add("bind_time", mer.CreateDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); //绑定时间
- dataContent.Add("brand", 101); //品牌
- Push("bind", dataContent);
- }
- catch (Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n\n", "推送绑定数据异常");
- }
- }
- public static void Bind(MerchantAddInfo mer, MySystem.Models.Main1.PosMachinesTwo pos)
- {
- Bind(mer, new PosMachinesTwo()
- {
- PosSn = pos.PosSn,
- });
- }
- public static void Push(string dataType, Dictionary<string, object> dataContent)
- {
- Dictionary<string, object> data = new Dictionary<string, object>();
- data.Add("data_type", dataType);
- data.Add("data_content", dataContent);
- KxsRedisDbconn.Instance.AddList("KxsPosDataQueue", Newtonsoft.Json.JsonConvert.SerializeObject(data));
- }
- public static string getRequestId(int id, string type)
- {
- if(id > 0)
- {
- return function.MD5_32(id.ToString() + type);
- }
- return DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8);
- }
- }
- }
|