Files
2026-09-02 16:31:50 +08:00

37 lines
913 B
C#
Raw Permalink 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 Prism.Mvvm;
namespace JSMachine.WMS.App.Dto
{
public partial class ElevatorPlcQueueDto : BindableBase, IRootDto
{
public Guid Id { get; set; }
/// <summary>
/// 提升机编号(1 2)
/// </summary>
public int ElevatorNo { get; set; }
/// <summary>
/// 通道号(网带编号)
/// </summary>
public int ElevatorChannel { get; set; }
/// <summary>
/// AgvTask的Id
/// </summary>
public Guid AgvTaskId { get; set; }
/// <summary>
/// 是否锁定
/// </summary>
public bool IsLock { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreationTime { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? LastModifiedTime { get; set; }
}
}