Files
ww-jst/wmsjst/JSMachine.WMS.Application/Dto/RcsTaskDto.cs
T

57 lines
1.4 KiB
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
using JSMachine.WMS.Domain.Repository;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JSMachine.WMS.App.Dto
{
/// <summary>
/// rcs系统的任务信息。模拟测试用
/// </summary>
public class RcsTaskDto : IRootDto
{
public Guid Id { get; set; }
/// <summary>
/// 任务id
/// </summary>
public string TaskId { get; set; }
/// <summary>
/// wms上传时间
/// </summary>
public DateTime UploadTime { get; set; }
/// <summary>
/// 起点
/// </summary>
public string StartPositionCode { get; set; }
/// <summary>
/// 终点
/// </summary>
public string EndPositionCode { get; set; }
/// <summary>
/// 任务状态
/// 3:已取消
/// 5:发送失败
/// 6:运行中
///7:执行失败
///8:已完成
///9:已下发
///10:等待确认
///20:取货中
///21:取货完成
///22:放货中
///23:放货完成
/// 必须
/// </summary>
public int Status { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreationTime { get; set; }
public DateTime? LastModifiedTime { get; set; }
}
}