// 闻荫智慧工厂管理套件 // Copyright (c) 闻荫科技 www.ccwin-in.com using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; using Win.Sfs.Shared.DomainBase; namespace Win.Sfs.Shared.DtoBase { /// /// Full audited entity DTO base /// /// TKey public abstract class AuditedEntityDtoBase : AuditedEntityDto, IEnabled, IRemark { /// /// 是否可用 /// [Display(Name = "是否可用")] public bool Enabled { get; set; } = true; /// /// 备注 /// [Display(Name = "备注")] public string Remark { get; set; } } }