You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
478 B
20 lines
478 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Apewer.Source
|
|
{
|
|
|
|
/// <summary>数据库记录通用字段模型。</summary>
|
|
public interface IRecord
|
|
{
|
|
|
|
/// <summary>记录唯一键,一般使用 GUID 的字符串形式,字段长度不应超过 255 个字符。</summary>
|
|
string Key { get; set; }
|
|
|
|
/// <summary>记录的标记,区分记录的状态。</summary>
|
|
long Flag { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|