| 123456789101112131415161718192021222324252627282930313233 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using Abp.Domain.Entities.Auditing;
- using WeApp.Authorization.Users;
- namespace WeApp.BasicInfo
- {
- [Table("Bs_TempInfos")]
- public class TempInfo : CreationAuditedEntity<int,User>
- {
- [MaxLength(50)]
- public string TableName { get; set; }
- [MaxLength(50)]
- public string ColumnName { get; set; }
- [MaxLength(50)]
- public string Key { get; set; }
- [MaxLength(100)]
- public string Value1 { get; set; }
- [MaxLength(200)]
- public string Value2 { get; set; }
- [MaxLength(500)]
- public string Value3 { get; set; }
- [MaxLength(500)]
- public string Value5 { get; set; }
- [MaxLength(500)]
- public string Value6 { get; set; }
- [MaxLength(500)]
- public string Value7 { get; set; }
- [MaxLength(int.MaxValue)]
- public string Value8 { get; set; }
- }
- }
|