TempInfo.cs 990 B

123456789101112131415161718192021222324252627282930313233
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. using Abp.Domain.Entities.Auditing;
  4. using WeApp.Authorization.Users;
  5. namespace WeApp.BasicInfo
  6. {
  7. [Table("Bs_TempInfos")]
  8. public class TempInfo : CreationAuditedEntity<int,User>
  9. {
  10. [MaxLength(50)]
  11. public string TableName { get; set; }
  12. [MaxLength(50)]
  13. public string ColumnName { get; set; }
  14. [MaxLength(50)]
  15. public string Key { get; set; }
  16. [MaxLength(100)]
  17. public string Value1 { get; set; }
  18. [MaxLength(200)]
  19. public string Value2 { get; set; }
  20. [MaxLength(500)]
  21. public string Value3 { get; set; }
  22. [MaxLength(500)]
  23. public string Value5 { get; set; }
  24. [MaxLength(500)]
  25. public string Value6 { get; set; }
  26. [MaxLength(500)]
  27. public string Value7 { get; set; }
  28. [MaxLength(int.MaxValue)]
  29. public string Value8 { get; set; }
  30. }
  31. }