MachineForQrCodeDbconn.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MySystem.MainModels;
  5. namespace MySystem
  6. {
  7. public class MachineForQrCodeDbconn
  8. {
  9. public readonly static MachineForQrCodeDbconn Instance = new MachineForQrCodeDbconn();
  10. #region 获取单个字段
  11. public MachineForQrCode Get(string DataId)
  12. {
  13. string key = "MachineForQrCode:" + DataId;
  14. if (RedisDbconn.Instance.Exists(key))
  15. {
  16. MachineForQrCode obj = RedisDbconn.Instance.Get<MachineForQrCode>(key);
  17. if (obj != null)
  18. {
  19. return obj;
  20. }
  21. }
  22. WebCMSEntities db = new WebCMSEntities();
  23. MachineForQrCode order = db.MachineForQrCode.FirstOrDefault(m => m.DataId == DataId);
  24. if (order != null)
  25. {
  26. RedisDbconn.Instance.Set(key, order);
  27. RedisDbconn.Instance.SetExpire(key, Library.function.get_Random(1800, 5400));
  28. }
  29. return order;
  30. }
  31. #endregion
  32. #region 获取列表
  33. public List<MachineForQrCode> GetList(int MerchantId, int pageNum = 1, int pageSize = 10)
  34. {
  35. string key = "MachineForQrCodeList:" + MerchantId;
  36. List<MachineForQrCode> list = new List<MachineForQrCode>();
  37. if (RedisDbconn.Instance.Exists(key))
  38. {
  39. list = RedisDbconn.Instance.GetList<MachineForQrCode>(key, pageNum, pageSize);
  40. if (list.Count > 0)
  41. {
  42. return list;
  43. }
  44. }
  45. WebCMSEntities db = new WebCMSEntities();
  46. var mysqllist = db.MachineForQrCode.Where(m => m.MerchantId == MerchantId).ToList();
  47. if (mysqllist.Count > 0)
  48. {
  49. List<MachineForQrCode> newlist = new List<MachineForQrCode>();
  50. foreach (MachineForQrCode sub in mysqllist)
  51. {
  52. newlist.Add(sub);
  53. }
  54. RedisDbconn.Instance.Clear(key);
  55. foreach (MachineForQrCode sub in newlist)
  56. {
  57. RedisDbconn.Instance.AddRightList(key, sub);
  58. }
  59. RedisDbconn.Instance.SetExpire(key, Library.function.get_Random(1800, 5400));
  60. }
  61. db.Dispose();
  62. return list;
  63. }
  64. #endregion
  65. }
  66. }