15 lines
285 B
C#
15 lines
285 B
C#
namespace YLErp.Modules.DataCacheModule
|
|
{
|
|
/// <summary>
|
|
/// 数据跟踪信息
|
|
/// </summary>
|
|
public class DataTraceInfo
|
|
{
|
|
public long id { get; set; }
|
|
|
|
public string TableName { get; set; }
|
|
|
|
public string DataKeyId { get; set; }
|
|
}
|
|
}
|