2024-05-24 10:22:01 +00:00
|
|
|
|
// 大名科技(天津)有限公司版权所有 电话: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>
|
2024-06-26 10:33:33 +00:00
|
|
|
|
/// 名称
|
2024-05-24 10:22:01 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
/// <summary>
|
2024-06-26 10:33:33 +00:00
|
|
|
|
/// 码包名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? Package { get; set; }
|
|
|
|
|
/// <summary>
|
2024-05-25 10:46:26 +00:00
|
|
|
|
/// 生产日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? ProductDate { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 失效日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? LoseDate { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 批次
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? Batch { get; set; }
|
|
|
|
|
/// <summary>
|
2024-05-30 10:18:10 +00:00
|
|
|
|
/// 物料ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? MaterialsId { get; set; }
|
|
|
|
|
/// <summary>
|
2024-05-24 10:22:01 +00:00
|
|
|
|
/// 打印数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<PrintData> PrintDatas { get; set; }
|
|
|
|
|
}
|