using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Abp.Domain.Entities; using Abp.Domain.Entities.Auditing; using ShwasherSys.Authorization.Users; namespace ShwasherSys.BasicInfo { [Table("QualityIssueLabelInfo")] public class QualityIssueLabel: FullAuditedEntity { public const int NameMaxLength = 50; public const int DescMaxLength = 500; /// /// 标签名称 /// [Required] [MaxLength(NameMaxLength)] public string Name { get; set; } /// /// 标签描述 /// [MaxLength(DescMaxLength)] public string Description { get; set; } public const int RemarkMaxLength = 500; [MaxLength(RemarkMaxLength)] public string Remark { get; set; } } }