28 lines
728 B
C#
28 lines
728 B
C#
|
// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
|
|||
|
//
|
|||
|
// 此源代码遵循位于源代码树根目录中的 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; }
|
|||
|
}
|