zhuangpei-mesbackend/DOAN.Model/MES/exception/Dto/ProWorkorderUpdateLogDto.cs

62 lines
1.5 KiB
C#
Raw Normal View History

2024-11-19 17:15:34 +08:00
using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.exception.Dto
{
/// <summary>
/// 工单修改日志表查询对象
/// </summary>
2024-11-19 17:18:16 +08:00
public class ProWorkorderUpdateLogQueryDto : PagerInfo
{
public string Workorder { get; set; }
public string ResponsiblePerson { get; set; }
2024-11-19 17:24:29 +08:00
public DateTime[] SearchDateTimeArray { get; set; }=new DateTime[2];
2024-11-19 17:18:16 +08:00
}
2024-11-19 17:15:34 +08:00
/// <summary>
/// 工单修改日志表输入输出对象
/// </summary>
public class ProWorkorderUpdateLogDto
{
[Required(ErrorMessage = "雪花不能为空")]
public string Id { get; set; }
public string Workorder { get; set; }
2024-12-02 12:41:16 +08:00
/// <summary>
/// 存货编码
/// </summary>
public string ProductionCode { get; set; }
/// <summary>
/// 产品名称
/// </summary>
public string ProductionName { get; set; }
/// <summary>
/// 规格型号
/// </summary>
public string Specification { get; set; }
2024-11-19 17:15:34 +08:00
public string Log { get; set; }
public string ResponsiblePerson { get; set; }
public string Reason { get; set; }
public DateTime? ChangeTime { get; set; }
public string Operator { get; set; }
public DateTime? CreatedTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public string UpdatedBy { get; set; }
}
}