zhuangpei-mesbackend/DOAN.Model/MES/product/Dto/ProLabelTraceLogDto.cs
qianhao.xu 4cdd7b06e3 1
2024-09-19 10:51:31 +08:00

42 lines
878 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.product.Dto
{
/// <summary>
/// 查询对象
/// </summary>
public class ProLabelTraceLogQueryDto : PagerInfo
{
}
/// <summary>
/// 输入输出对象
/// </summary>
public class ProLabelTraceLogDto
{
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
[Required(ErrorMessage = "雪花不能为空")]
public string Id { get; set; }
public string Workorder { get; set; }
public string LabelContext { get; set; }
public int? Status { get; set; }
}
}