using System.Collections.Generic; namespace Utils.Printers { public struct PrintInfo { public double 顶边距 { get; set; } public IList 表前信息 { get; set; } public int 表前信息字号 { get; set; } public string 标题 { get; set; } public long 单号 { get; set; } public double 标题字号 { get; set; } public double 标题左边距 { get; set; } public int 正文字号 { get; set; } public double 正文左边距 { get; set; } public double 行距 { get; set; } public List> 表头信息 { get; set; } public double 表头页宽 { get; set; } public int 表头列数 { get; set; } public int 表头标签文字最大个数 { get; set; } public int 清单每页最大行数 { get; set; } public IList 清单每列列宽 { get; set; } public bool 是否允许合计 { get; set; } public IList 合计列的列名 { get; set; } public bool 是否打印页码 { get; set; } public bool 是否打印打印人 { get; set; } public bool 是否打印打印时间 { get; set; } public string 打印人 { get; set; } public int 页脚字号 { get; set; } public IList 页脚前信息 { get; set; } public IList 页脚后信息 { get; set; } public int 页脚前信息字号 { get; set; } public int 页脚后信息字号 { get; set; } } }