using System; using System.Collections.Generic; using System.Text; using Volo.Abp.Application.Dtos; namespace Shentun.Peis.ReportFormats { public class ReportFormatDto : AuditedEntityDto { /// /// 报表名称 /// public string DisplayName { get; set; } /// /// 报表名称 /// public char IsDefault { get; set; } public bool IsDefaulted { get; set; } /// /// 报表ID /// public string ReportId { get; set; } /// /// 创建者 /// public string CreatorName { get; set; } /// /// 最后修改者 /// public string LastModifierName { get; set; } } }