DigitalFactory/Admin.NET/Admin.NET.Application/Service/ReportTable/Dto/AddReportContext.cs

28 lines
728 B
C#
Raw Normal View History

2024-05-24 10:22:01 +00:00
// 大名科技(天津)有限公司版权所有 电话18020030720 QQ515096995
//
// 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
using Admin.NET.Application.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application.Service.ReportTable.Dto;
public class AddReportContext
{
/// <summary>
/// 单位组Id
/// </summary>
public long UnitGroupId { get; set; }
/// <summary>
/// 码包名称
/// </summary>
public string? Name { get; set; }
/// <summary>
/// 打印数据
/// </summary>
public List<PrintData> PrintDatas { get; set; }
}