20250710 试压包资料

This commit is contained in:
2025-07-10 16:47:41 +08:00
parent 4b878c2c08
commit 46e82ffb7e
17 changed files with 1751 additions and 5 deletions
+30
View File
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
///
/// </summary>
public class FastReportItem
{
/// <summary>
/// Table数据源集
/// </summary>
public List<DataTable> DataTables { get; set; }
/// <summary>
/// 参数键值对
/// </summary>
public Dictionary<string, string> ParameterValues { get; set; }
/// <summary>
/// 模板路径
/// </summary>
public string ReportPath { get; set; }
}
}