PostVisitRecordStats.cs 388 B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace Masuit.MyBlogs.Core.Models.Entity;
  4. [Table("PostVisitRecordStats")]
  5. public class PostVisitRecordStats : BaseEntity
  6. {
  7. public int PostId { get; set; }
  8. [ConcurrencyCheck]
  9. public DateTime Date { get; set; }
  10. [ConcurrencyCheck]
  11. public int Count { get; set; }
  12. }