using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; using Win.Sfs.Shared.DomainBase; namespace Win.Sfs.Shared.DtoBase { /// /// Entity DTO base /// /// TKey public abstract class EntityDtoBase : EntityDto, IEnabled, IRemark { /// /// 是否可用 /// [Display(Name = "是否可用")] public bool Enabled { get; set; } = true; /// /// 备注 /// [Display(Name = "备注")] public string Remark { get; set; } } }