1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using MySystem.MainModels;
- namespace MySystem
- {
- public class UserCashRecordDbconn
- {
- public readonly static UserCashRecordDbconn Instance = new UserCashRecordDbconn();
- #region 获取单个字段
- public UserCashRecord Get(int Id)
- {
- // string key = "UserCashRecord:" + Id;
- // if (RedisDbconn.Instance.Exists(key))
- // {
- // UserCashRecord obj = RedisDbconn.Instance.Get<UserCashRecord>(key);
- // if (obj != null)
- // {
- // return obj;
- // }
- // }
- WebCMSEntities db = new WebCMSEntities();
- UserCashRecord orderPro = db.UserCashRecord.FirstOrDefault(m => m.Id == Id);
- if (orderPro != null)
- {
- // RedisDbconn.Instance.Set(key, orderPro);
- // RedisDbconn.Instance.SetExpire(key, Library.function.get_Random(1800, 5400));
- }
- return orderPro;
- }
- #endregion
- #region 获取列表
- public List<int> GetList(int UserId, int pageNum = 1, int pageSize = 10)
- {
- string key = "UserCashRecordList:" + UserId;
- List<int> list = new List<int>();
- // if (RedisDbconn.Instance.Exists(key))
- // {
- // list = RedisDbconn.Instance.GetList<int>(key, pageNum, pageSize);
- // if (list.Count > 0)
- // {
- // return list;
- // }
- // }
- WebCMSEntities db = new WebCMSEntities();
- var mysqllist = db.UserCashRecord.Select(m => new { m.Id, m.UserId }).Where(m => m.UserId == UserId).OrderByDescending(m => m.Id).ToList();
- if (mysqllist.Count > 0)
- {
- RedisDbconn.Instance.Clear(key);
- foreach (var sub in mysqllist)
- {
- list.Add(sub.Id);
- RedisDbconn.Instance.AddRightList(key, sub.Id);
- }
- }
- db.Dispose();
- return list;
- }
- #endregion
- }
- }
|