44 lines
1.1 KiB
C#
44 lines
1.1 KiB
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 DateTime? ProductDate { get; set; }
|
||
/// <summary>
|
||
/// 失效日期
|
||
/// </summary>
|
||
public DateTime? LoseDate { get; set; }
|
||
/// <summary>
|
||
/// 批次
|
||
/// </summary>
|
||
public string? Batch { get; set; }
|
||
/// <summary>
|
||
/// 物料ID
|
||
/// </summary>
|
||
public long? MaterialsId { get; set; }
|
||
/// <summary>
|
||
/// 打印数据
|
||
/// </summary>
|
||
public List<PrintData> PrintDatas { get; set; }
|
||
}
|