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);
|
}
|
|
|
}
|
}
|