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