90 lines
2.0 KiB
C#
90 lines
2.0 KiB
C#
|
|
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; }
|
|||
|
|
}
|