lixiaojun
2024-08-20 b9fd3931700cd17a7d77182f3d88ed69fff357f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
namespace Yw.Service
{
    /// <summary>
    /// 
    /// </summary>
    public class RunRealLastRecordCacheHelper : Yw.LCache.IRunRealLastRecordCacheHelper
    {
        private readonly Yw.LCache.IRunRealLastRecordCacheHelper _helper =
            LCacheCreateHelper.CreateLCache<Yw.LCache.IRunRealLastRecordCacheHelper>();
 
 
        /// <summary>
        /// 设置最后一条记录
        /// </summary>
        public bool SetLastRecord(Model.RunRealRecord record)
        {
            return _helper.SetLastRecord(record);
        }
 
        /// <summary>
        /// 设置最后一条记录
        /// </summary>
        public bool SetLastRecord(List<Model.RunRealRecord> list)
        {
            return _helper.SetLastRecord(list);
        }
 
        /// <summary>
        /// 获取最后一条记录
        /// </summary>
        public List<Model.RunRealRecord> GetLastRecord()
        {
            return _helper.GetLastRecord();
        }
 
        /// <summary>
        /// 获取最后一条记录
        /// </summary>
        public List<Model.RunRealRecord> GetLastRecord(string ObjectType)
        {
            return _helper.GetLastRecord(ObjectType);
        }
 
        /// <summary>
        /// 获取最后一条记录
        /// </summary>
        public List<Model.RunRealRecord> GetLastRecord(long ObjectID)
        {
            return _helper.GetLastRecord(ObjectID);
        }
 
        /// <summary>
        /// 获取最后一条记录
        /// </summary>
        public Model.RunRealRecord GetLastRecord(string ObjectType, long ObjectID)
        {
            return _helper.GetLastRecord(ObjectType, ObjectID);
        }
 
        /// <summary>
        /// 获取最后一条记录
        /// </summary>
        public List<Model.RunRealRecord> GetLastRecord(string ObjectType, IEnumerable<long> ObjectIds)
        {
            return _helper.GetLastRecord(ObjectType, ObjectIds);
        }
 
        /// <summary>
        /// 获取最后一条记录
        /// </summary>
        public List<Model.RunRealRecord> GetLastRecord(List<(string, long)> list)
        {
            return _helper.GetLastRecord(list);
        }
 
 
    }
}