You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
659 B
C#

using System.Collections.Generic;
namespace DS.Module.FastReport
{
/// <summary>
/// 打印实体
/// </summary>
public class PrintModel
{
/// <summary>
/// 打印名称
/// </summary>
public string PrintName { get; set; }
/// <summary>
/// 表头表尾数据
/// </summary>
public List<object> MainData { get; set; }
/// <summary>
/// 明细数据
/// </summary>
public List<object> DetailData { get; set; }
/// <summary>
/// 打印路径
/// </summary>
public string PrintPath { get; set; }
}
}