Files
wcs/WCS.Model/ApiModel/PDAProductionLineCallIn/GetLocationInfoForCallInResponseData.cs
2025-02-18 14:34:46 +08:00

18 lines
425 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.PDAProductionLineCallIn
{
public class GetLocationInfoForCallInResponseData
{
public int LocationId { get; set; }
public string LocationCode { get; set; }
public string ShelfTransStatusStr { get; set; } = string.Empty;
public string ShelfCode { get; set; } = string.Empty;
}
}