using System;
using System.Collections.Generic;
using System.Text;
namespace Apewer.Source
{
/// 数据库记录通用字段模型。
public interface IRecordStamp
{
/// 记录的创建时间 UTC 时间戳,值为执行 INSERT INTO 语句时的 UTC 时间戳。
long Created { get; set; }
/// 记录的更新时间 UTC 时间戳,每次对此记录执行 UPDATE 时应更新此值为当前 UTC 时间戳。
long Updated { get; set; }
}
}