wcs_serve_wuxikate/WcsMain/ApiServe/Controllers/Dto/WcsDto/Location/UpdateLocationRequest.cs
2025-01-03 14:36:27 +08:00

90 lines
2.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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