42 lines
878 B
C#
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; }
|
|
|
|
|
|
|
|
}
|
|
}
|