UserOperationRecordEntity.cs 648 B

12345678910111213141516171819202122232425262728
  1. using CZFW.Framework.Model.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. using System.Text;
  7. namespace CZKJ.GBRS2.Entity
  8. {
  9. [Table("user_operation_record")]
  10. public class UserOperationRecordEntity
  11. {
  12. public int Id { get; set; }
  13. [Required]
  14. public int UserId { get; set; }
  15. [Required]
  16. [MaxLength(128)]
  17. public string Type { get; set; }
  18. [Required]
  19. [MaxLength(1024)]
  20. public string Content { get; set; }
  21. public DateTime CreatedTime { get; set; }
  22. }
  23. }