using Furion.TaskScheduler;
using iWare.Wms.Core.Enum;
using iWare.Wms.Core.Util.LowCode.Dto;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace iWare.Wms.Application
{
public class QueryWorkPieceLogYieldOutput : ExportYQueryWorkPieceLogYieldOutput
{
///
/// 当前设备
///
public string EquipmentID { get; set; }
[Description("备注")]
public string MyRemarks { get; set; }
///
/// 日志类型
///
[Comment("日志类型")]
public int? PieceLogType { get; set; }
///
/// 日志类型
///
[Comment("日志类型")]
[MaxLength(255)]
public string PieceLogTypeName { get; set; }
}
[Description("工件采集日志查询")]
public class ExportYQueryWorkPieceLogYieldOutput
{
/////
///// 设备名称
/////
//[Description("当前设备")]
//public string EquipmentName { get; set; }
///
/// 当前工序
///
[Description("当前工序")]
public string WorkingProcedure { get; set; }
///
/// 工件号
///
[Description("工件号")]
public string WorkPieceID { get; set; }
[Description("备注")]
public string Remarks { get; set; }
[Description("创建人")]
public virtual string CreatedUserName { get; set; }
///
/// 创建时间
///
[Description("创建时间")]
public virtual DateTimeOffset? CreatedTime { get; set; }
}
}