Files
wcs/WCS.Model/ApiModel/PDAProductionLineCallOut/GetShelfInfoForCallOutResponseData.cs
2025-02-20 17:05:26 +08:00

18 lines
484 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using WCS.Model.ApiModel.LocationInfo;
namespace WCS.Model.ApiModel.PDAProductionLineCallOut
{
public class GetShelfInfoForCallOutResponseData
{
public int ShelfId { get; set; }
public string ShelfCode { get; set; }
public int LocationId { get; set; }
public string LocationCode { get; set; }
public List<LocationAreaInfoModel> LocationAreas { get; set; }
}
}