shgx_tz_mom/ZR.Model/MES/pro/DTO/ProFinishedProductReceiptLogDto.cs
2025-11-14 17:26:04 +08:00

45 lines
1.3 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 ZR.Model.Dto
{
/// <summary>
/// MES成品入库单操作日志表查询对象
/// </summary>
public class ProFinishedProductReceiptLogQueryDto : PagerInfo
{
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
}
/// <summary>
/// MES成品入库单操作日志表输入输出对象
/// </summary>
public class ProFinishedProductReceiptLogDto
{
[Required(ErrorMessage = "自增主键不能为空")]
[JsonConverter(typeof(ValueToStringConverter))]
public long Id { get; set; }
[Required(ErrorMessage = "关联入库单号不能为空")]
public string ReceiptNo { get; set; }
[Required(ErrorMessage = "操作人用户ID不能为空")]
public string OperatedBy { get; set; }
[Required(ErrorMessage = "操作时间不能为空")]
public DateTime? OperatedTime { get; set; }
[Required(ErrorMessage = "操作类型CREATE-创建UPDATE-修改APPROVE-审核CANCEL-取消PRINT_LABEL-打印标签OTHER-其他不能为空")]
public string OperationType { get; set; }
public string OperationContent { get; set; }
public string OperationResult { get; set; }
public string Remark { get; set; }
}
}