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.

23 lines
559 B

4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Apewer.Source
  5. {
  6. /// <summary>数据库记录通用字段模型。</summary>
  7. public interface IRecordStamp : IRecord
  8. {
  9. /// <summary>记录的创建时间,默认为本地时间。</summary>
  10. long Created { get; set; }
  11. /// <summary>记录的更新时间,默认为本地时间。</summary>
  12. long Updated { get; set; }
  13. /// <summary>获取 Created 和 Updated 属性的值。</summary>
  14. long GenerateStamp();
  15. }
  16. }