using System.Text.Json.Serialization; namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Location; public class UpdateLocationRequest { /// /// Wcs点位 /// [JsonPropertyName("wcsLocation")] public string? WcsLocation { get; set; } /// /// Wms点位,该列主要用于映射 /// [JsonPropertyName("wmsLocation")] public string? WmsLocation { get; set; } /// /// 巷道编号 /// [JsonPropertyName("tunnelNo")] public int? TunnelNo { get; set; } /// /// 设备编号 /// [JsonPropertyName("equipmentId")] public int? EquipmentId { get; set; } /// /// 点位状态 /// [JsonPropertyName("locationStatus")] public int? LocationStatus { get; set; } /// /// 排 /// [JsonPropertyName("queue")] public int? Queue { get; set; } /// /// 列 /// [JsonPropertyName("line")] public int? Line { get; set; } /// /// 层 /// [JsonPropertyName("layer")] public int? Layer { get; set; } /// /// 深 /// [JsonPropertyName("depth")] public int? Depth { get; set; } /// /// 点位类型 /// [JsonPropertyName("locationType")] public int? LocationType { get; set; } /// /// 载具编号 /// [JsonPropertyName("vehicleNo")] public string? VehicleNo { get; set; } /// /// 修改时间 /// [JsonPropertyName("modifyTime")] public DateTime? ModifyTime { get; set; } /// /// 说明信息 /// [JsonPropertyName("explain")] public string? Explain { get; set; } /// /// 备注 /// [JsonPropertyName("remark")] public string? Remark { get; set; } }