using JetBrains.Annotations; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; using Volo.Abp.Application.Dtos; namespace Shentun.Peis.Reports { public class ReportDto:AuditedEntityDto { /// /// 报表名称 /// public string DisplayName { get; set; } /// /// 启用 /// public char IsActive { get; set; } public bool IsActived { get; set; } /// /// 创建者 /// public string CreatorName { get; set; } /// /// 最后修改者 /// public string LastModifierName { get; set; } } }