81 lines
1.8 KiB
C#
81 lines
1.8 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.StackerConvey;
|
|
|
|
public class StackerConveyStatusResponse
|
|
{
|
|
/// <summary>
|
|
/// WCS 点位
|
|
/// </summary>
|
|
[JsonPropertyName("wcsLocation")]
|
|
public string? WcsLocation { get; set; }
|
|
|
|
/// <summary>
|
|
/// WMS 点位
|
|
/// </summary>
|
|
[JsonPropertyName("wmsLocation")]
|
|
public string? WmsLocation { get; set; }
|
|
|
|
/// <summary>
|
|
/// 点位名称
|
|
/// </summary>
|
|
[JsonPropertyName("locationName")]
|
|
public string? LocationName { get; set; }
|
|
|
|
/// <summary>
|
|
/// plc 的位置
|
|
/// </summary>
|
|
[JsonPropertyName("plcLocation")]
|
|
public string? PlcLocation { get; set; }
|
|
|
|
/// <summary>
|
|
/// 区域
|
|
/// </summary>
|
|
[JsonPropertyName("area")]
|
|
public string? Area { get; set; }
|
|
|
|
/// <summary>
|
|
/// 点位类型
|
|
/// </summary>
|
|
[JsonPropertyName("locationType")]
|
|
public int? LocationType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 点位状态
|
|
/// </summary>
|
|
[JsonPropertyName("locationStatus")]
|
|
public int? LocationStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 写入方式
|
|
/// </summary>
|
|
[JsonPropertyName("writeType")]
|
|
public int? WriteType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注信息
|
|
/// </summary>
|
|
[JsonPropertyName("remark")]
|
|
public string? Remark { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 查询结果
|
|
/// </summary>
|
|
[JsonPropertyName("msg")]
|
|
public string? Message { get; set; } = "-";
|
|
|
|
/// <summary>
|
|
/// 条码
|
|
/// </summary>
|
|
[JsonPropertyName("code")]
|
|
public string? Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 动作允许
|
|
/// </summary>
|
|
[JsonPropertyName("allowAction")]
|
|
public bool? AllowAction { get; set; }
|
|
|
|
}
|