Valeo_Line_MES_backend/MDM/Models/Recipe/Dto/PfRecipeIssueLogDto.cs
quowingwang d55dcbc913 2
2026-01-10 16:52:02 +08:00

94 lines
1.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel.DataAnnotations;
namespace RIZO.Model.MES.recipe.Dto
{
/// <summary>
/// 配方下达记录表查询对象
/// </summary>
public class PfRecipeIssueLogQueryDto : PagerInfo
{
public string? RecipeCode { get; set; }
public string? Version { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
}
/// <summary>
/// 配方下达记录表输入输出对象
/// </summary>
public class PfRecipeIssueLogDto
{
/// <summary>
/// 下达记录ID主键
/// </summary>
public int Id { get; set; }
/// <summary>
/// 配方码
/// </summary>
public string RecipeCode { get; set; }
/// <summary>
/// 版本编号
/// </summary>
public string Version { get; set; }
/// <summary>
/// 下达时间
/// </summary>
public string? IssueTime { get; set; }
/// <summary>
/// 工单号
/// </summary>
public string? Workorder { get; set; }
/// <summary>
/// 产品码
/// </summary>
public string? Productcode { get; set; }
/// <summary>
/// 产品名称
/// </summary>
public string? Productname { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string? CreatedBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreatedTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
[SugarColumn(ColumnName = "updated_by")]
public string? UpdatedBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime? UpdatedTime { get; set; }
}
}