You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.ReportFormatTemplates
|
|
{
|
|
public class CreateReportFormatTemplateDto
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报表格式ID
|
|
/// </summary>
|
|
public string ReportFormatId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 格式名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模板文件类型 0:fastereport 1:Grid++Report
|
|
/// </summary>
|
|
public char TemplateFileType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模板文件
|
|
/// </summary>
|
|
public string TemplateFile { get; set; }
|
|
|
|
public string DataSetJson { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否系统自定义(Y:是,N:否)
|
|
/// </summary>
|
|
public char IsSystem { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否默认(Y:是,N:否)
|
|
/// </summary>
|
|
public char IsDefault { get; set; }
|
|
}
|
|
}
|