2024-10-07 09:51:55 +08:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
using DataCheck;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiServe.Dto.WcsDto.WcsTask;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 更新 wcs 任务状态请求类
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class UpdateWcsTaskStatusRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// plc任务号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataRules]
|
|
|
|
|
|
[JsonPropertyName("plcId")]
|
|
|
|
|
|
public int? PlcId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataRules]
|
|
|
|
|
|
[JsonPropertyName("taskStatus")]
|
|
|
|
|
|
public int? TaskStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 优先级
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataRules]
|
|
|
|
|
|
[JsonPropertyName("priority")]
|
|
|
|
|
|
public int? Priority { get; set; }
|
|
|
|
|
|
}
|