Initial_commit_SecMPS_v2
This commit is contained in:
40
api_sqlsugar/VolPro.Core/Print/PrintQuery.cs
Normal file
40
api_sqlsugar/VolPro.Core/Print/PrintQuery.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VolPro.Core.Print
|
||||
{
|
||||
public class PrintQuery
|
||||
{
|
||||
public object[] Ids { get; set; }
|
||||
public Guid TemplateId { get; set; }
|
||||
/// <summary>
|
||||
/// 打印模板名称
|
||||
/// </summary>
|
||||
public string TemplateName { get; set; }
|
||||
public string Table { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否批量打印主表与明细表数据
|
||||
/// </summary>
|
||||
public bool BatchMainAndDetail { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否批量打印主表数据
|
||||
/// </summary>
|
||||
public bool BatchMain { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否打印明细表数据
|
||||
/// </summary>
|
||||
public bool Detail { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 自定义参数
|
||||
/// </summary>
|
||||
public string Options { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user